Browse Source

Merge branch '2-fix-puppeteer-timeouts-on-ci' into 'master'

Resolve "Fix puppeteer timeouts on CI"

Closes #2

See merge request timvisee/send!4
Tim Visée 4 years ago
parent
commit
54c182ab0d
1 changed files with 1 additions and 0 deletions
  1. 1 0
      test/frontend/runner.js

+ 1 - 0
test/frontend/runner.js

@@ -34,6 +34,7 @@ const server = app.listen(async function() {
     const page = await browser.newPage();
     page.on('console', onConsole);
     page.on('pageerror', console.log.bind(console));
+    await page.setDefaultNavigationTimeout(60000);
     await page.goto(`http://127.0.0.1:${server.address().port}/test`);
     await page.waitFor(() => typeof runner.testResults !== 'undefined', {
       polling: 1000,