Skip to content

Commit

Permalink
test: disable sandbox in puppeteer to get around CI issues
Browse files Browse the repository at this point in the history
  • Loading branch information
B4nan committed Jan 22, 2025
1 parent c7f18ab commit c88c749
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 c88c749

Please sign in to comment.