Skip to content

Commit

Permalink
test: disable sandbox in puppeteer to get around CI issues (#627)
Browse files Browse the repository at this point in the history
  • Loading branch information
B4nan authored Jan 23, 2025
1 parent c7f18ab commit 664be9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/_helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const mockServer = require('./mock_server/server');
class Browser {
async start() {
this.browser = await launchPuppeteer({
launchOptions: { headless: true, args: ['--disable-web-security'] },
launchOptions: { headless: true, args: ['--disable-web-security', '--no-sandbox'] },
});
return this.browser;
}
Expand Down

0 comments on commit 664be9c

Please sign in to comment.