We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5a456c commit acb11eaCopy full SHA for acb11ea
.gitignore
@@ -12,9 +12,8 @@ src/customLayers.json
12
/coverage
13
chimp.js
14
state.json
15
-/state.json
16
-**/state.json
17
-./state.json
+error.png
+
18
# production
19
/build
20
/dist
playwright/global-setup.js
@@ -1,11 +1,9 @@
1
-import { chromium, expect } from '@playwright/test';
+import { chromium } from '@playwright/test';
2
3
async function globalSetup(config) {
4
const { storageState } = config.projects[0].use;
5
const browser = await chromium.launch({ headless: false });
6
- const context = await browser.newContext({
7
- viewport: { width: 1280, height: 720 }
8
- });
+ const context = await browser.newContext();
9
const page = await context.newPage();
10
11
try {
0 commit comments