Skip to content

Commit b502b32

Browse files
committed
increase browser test beforeAll timeout to 10s
1 parent 05b782b commit b502b32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/browser/browser.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ describe('Test browser Parser in the node env', function() {
4040

4141
console.info('navigating to localhost');
4242
await page.goto('http://localhost:8080', { waitUntil: 'networkidle0' });
43-
});
43+
}, 10000);
4444

4545
afterAll(async function() {
4646
await browser.close();
@@ -58,4 +58,4 @@ describe('Test browser Parser in the node env', function() {
5858
const diagnostics = await page.evaluate(element => element && element.textContent, diagnosticsDiv);
5959
expect(Number(diagnostics)).toBeGreaterThanOrEqual(0);
6060
}, 5000);
61-
});
61+
});

0 commit comments

Comments
 (0)