Skip to content

Commit bd531a1

Browse files
refactor: Upgrade puppeteer to 23.5.0 (#2297)
1 parent 8a1511f commit bd531a1

File tree

3 files changed

+504
-742
lines changed

3 files changed

+504
-742
lines changed

integration/test/ParseDistTest.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ let page = null;
66
for (const fileName of ['parse.js', 'parse.min.js']) {
77
describe(`Parse Dist Test ${fileName}`, () => {
88
beforeEach(async () => {
9-
browser = await puppeteer.launch({ args: ['--disable-web-security'] });
10-
const context = await browser.createIncognitoBrowserContext();
9+
browser = await puppeteer.launch({ args: ['--disable-web-security', '--incognito'] });
10+
const context = await browser.createBrowserContext();
1111
page = await context.newPage();
1212
await page.setCacheEnabled(false);
1313
await page.goto(`http://localhost:1337/${fileName}`);

0 commit comments

Comments
 (0)