Skip to content

Commit ca2fb77

Browse files
committed
chore: increase timeout for puppeteer test
1 parent a3c0134 commit ca2fb77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

puppeteer.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ beforeAll(async () => {
2828
if (puppeteer) {
2929
browser = await puppeteer.launch();
3030
}
31-
});
31+
}, 10000);
3232

3333
afterAll(async () => {
3434
if (browser) {
@@ -76,4 +76,4 @@ test('load dll correctly', async () => {
7676
} finally {
7777
await Promise.all([page.close(), server.stop()]);
7878
}
79-
});
79+
}, 10000);

0 commit comments

Comments
 (0)