Skip to content

Commit

Permalink
refactor: Bump pupetteer (#2403)
Browse files Browse the repository at this point in the history
  • Loading branch information
dblythy authored Jan 12, 2025
1 parent 2f3c1b0 commit 7b2ad85
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 43 deletions.
4 changes: 3 additions & 1 deletion integration/test/ParseDistTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ let page = null;
for (const fileName of ['parse.js', 'parse.min.js']) {
describe(`Parse Dist Test ${fileName}`, () => {
beforeEach(async () => {
browser = await puppeteer.launch({ args: ['--disable-web-security', '--incognito'] });
browser = await puppeteer.launch({
args: ['--disable-web-security', '--incognito', '--no-sandbox'],
});
const context = await browser.createBrowserContext();
page = await context.newPage();
await page.setCacheEnabled(false);
Expand Down
122 changes: 81 additions & 41 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"mongodb-runner": "5.7.1",
"parse-server": "7.3.0",
"prettier": "3.4.2",
"puppeteer": "23.11.1",
"puppeteer": "24.0.0",
"regenerator-runtime": "0.14.1",
"semantic-release": "24.2.1",
"typescript-eslint": "8.0.0-alpha.10",
Expand Down

0 comments on commit 7b2ad85

Please sign in to comment.