-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Copyright (c) JupyterLite Contributors | ||
// Distributed under the terms of the Modified BSD License. | ||
|
||
import { test } from '@jupyterlab/galata'; | ||
|
||
import { expect } from '@playwright/test'; | ||
|
||
import { firefoxWaitForApplication } from './utils'; | ||
|
||
test.use({ waitForApplication: firefoxWaitForApplication }); | ||
|
||
test.describe('General', () => { | ||
test.beforeEach(async ({ page }) => { | ||
await page.goto('lab/index.html'); | ||
}); | ||
|
||
test('Kernel is registered', async ({ page }) => { | ||
const imageName = 'launcher.png'; | ||
expect(await page.screenshot()).toMatchSnapshot(imageName); | ||
Check failure on line 19 in ui-tests/test/general.test.ts GitHub Actions / Visual Regression (firefox)[firefox] › test/general.test.ts:17:7 › General › Kernel is registered
Check failure on line 19 in ui-tests/test/general.test.ts GitHub Actions / Visual Regression (firefox)[firefox] › test/general.test.ts:17:7 › General › Kernel is registered
Check failure on line 19 in ui-tests/test/general.test.ts GitHub Actions / Visual Regression (chromium)[chromium] › test/general.test.ts:17:7 › General › Kernel is registered
Check failure on line 19 in ui-tests/test/general.test.ts GitHub Actions / Visual Regression (chromium)[chromium] › test/general.test.ts:17:7 › General › Kernel is registered
|
||
}); | ||
}); |