mirror of
https://github.com/jupyter/notebook.git
synced 2025-03-01 12:56:54 +08:00
Switch to firefox for testing
This commit is contained in:
parent
486c670b52
commit
d68ff10f4d
3
.gitignore
vendored
3
.gitignore
vendored
@ -115,3 +115,6 @@ junit.xml
|
||||
[uU]ntitled*
|
||||
jupyterlab_classic/static
|
||||
jupyterlab_classic/labextension
|
||||
|
||||
# playwright
|
||||
app/artifacts/videos
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { chromium, Browser, BrowserContext } from 'playwright';
|
||||
import { firefox, Browser, BrowserContext } from 'playwright';
|
||||
|
||||
describe('Smoke', () => {
|
||||
let browser: Browser;
|
||||
@ -6,7 +6,7 @@ describe('Smoke', () => {
|
||||
|
||||
beforeAll(async () => {
|
||||
jest.setTimeout(200000);
|
||||
browser = await chromium.launch({ slowMo: 1000 });
|
||||
browser = await firefox.launch({ slowMo: 1000 });
|
||||
context = await browser.newContext({
|
||||
recordVideo: { dir: 'artifacts/videos/' }
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user