Skip to content

Commit

Permalink
chore: fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
zhoushaw committed Sep 29, 2024
1 parent de5252f commit 1d74213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web-integration/tests/ai/web/puppeteer/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export async function launchPage(
},
) {
const browser = await puppeteer.launch({
headless: typeof opt?.headless === 'boolean' ? opt.headless : false,
headless: typeof opt?.headless === 'boolean' ? opt.headless : true,
});
const originPage = (await browser.pages())[0];
const viewportConfig = {
Expand Down

0 comments on commit 1d74213

Please sign in to comment.