Skip to content

Commit

Permalink
test: run new headless for the docker test (#10568)
Browse files Browse the repository at this point in the history
  • Loading branch information
OrKoN committed Jul 18, 2023
1 parent e3dd596 commit e6265ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/test/smoke-test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const puppeteer = require('puppeteer');

(async () => {
const browser = await puppeteer.launch();
const browser = await puppeteer.launch({headless: 'new'});
const page = await browser.newPage();
await page.goto('https://example.com');
await browser.close();
Expand Down

0 comments on commit e6265ee

Please sign in to comment.