Skip to content

Commit acb11ea

Browse files
committed
remove viewport and unnused import
1 parent d5a456c commit acb11ea

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.gitignore

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@ src/customLayers.json
1212
/coverage
1313
chimp.js
1414
state.json
15-
/state.json
16-
**/state.json
17-
./state.json
15+
error.png
16+
1817
# production
1918
/build
2019
/dist

playwright/global-setup.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
import { chromium, expect } from '@playwright/test';
1+
import { chromium } from '@playwright/test';
22

33
async function globalSetup(config) {
44
const { storageState } = config.projects[0].use;
55
const browser = await chromium.launch({ headless: false });
6-
const context = await browser.newContext({
7-
viewport: { width: 1280, height: 720 }
8-
});
6+
const context = await browser.newContext();
97
const page = await context.newPage();
108

119
try {

0 commit comments

Comments
 (0)