Skip to content

Commit

Permalink
chore: increase timeout for puppeteer test
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Feb 20, 2021
1 parent a3c0134 commit ca2fb77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions puppeteer.test.js
Expand Up @@ -28,7 +28,7 @@ beforeAll(async () => {
if (puppeteer) {
browser = await puppeteer.launch();
}
});
}, 10000);

afterAll(async () => {
if (browser) {
Expand Down Expand Up @@ -76,4 +76,4 @@ test('load dll correctly', async () => {
} finally {
await Promise.all([page.close(), server.stop()]);
}
});
}, 10000);

0 comments on commit ca2fb77

Please sign in to comment.