Skip to content

Commit

Permalink
Update test.js
Browse files Browse the repository at this point in the history
  • Loading branch information
cabraviva authored Feb 8, 2025
1 parent f041f2b commit 7c2e460
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ app.listen(4560, async () => {
// Run tests
const browser = await puppeteer.launch({
headless: true,
slowMo: 0
slowMo: 0,
args: [
'--no-sandbox'
]
})
const page = await browser.newPage()
await page.goto(`http://localhost:4560`)
Expand Down Expand Up @@ -178,4 +181,4 @@ app.listen(4560, async () => {

await sleep(333.333_333)
}
})
})

0 comments on commit 7c2e460

Please sign in to comment.