Skip to content

Commit 0af99a3

Browse files
authored
Extend timeout for generating tutorial dataset
1 parent 60be45b commit 0af99a3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/e2e/puppeteer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ type BrowserTestOutput = {
3434
}
3535

3636
const beforeStartTimeout = 2 * 60 * 1000 // Wait 2 minutes for Electron to open
37-
const protocolTimeout = 10 * 60 * 1000 // Creating the test dataset can take up to 10 minutes (mostly for Windows)
37+
const protocolTimeout = 15 * 60 * 1000 // Creating the test dataset can take up to 15 minutes (mostly for Windows)
3838

3939
export const connect = () => {
4040

tests/e2e/tutorial.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ describe('E2E Test', () => {
3838

3939
// Wait up to 10 minutes for dataset generation
4040
// Both the test timeout and the protocolTimeout on puppeteer.connect() must be set to 10 min
41-
datasetTestFunction('Create tutorial dataset', { timeout: 10 * 60 * 1000 }, async () => {
41+
datasetTestFunction('Create tutorial dataset', { timeout: 15 * 60 * 1000 }, async () => {
4242

4343
await evaluate(async () => {
4444

0 commit comments

Comments
 (0)