Skip to content

Commit e2a0242

Browse files
author
SentienceDEV
committed
fix tests
1 parent 5b5da7c commit e2a0242

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/actions.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ describe('Actions', () => {
174174
} finally {
175175
await browser.close();
176176
}
177-
}, 60000);
177+
}, 90000); // 90 seconds - Windows CI can be slow
178178

179179
it('should take snapshot after scroll when requested', async () => {
180180
const browser = await createTestBrowser();

tests/snapshot.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ describe('Snapshot', () => {
2323
} finally {
2424
await browser.close();
2525
}
26-
}, 60000); // 60 seconds - browser startup can be slow
26+
}, 90000); // 90 seconds - Windows CI can be slow
2727

2828
it('should have valid element structure', async () => {
2929
const browser = await createTestBrowser();

tests/video-recording.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,5 +301,5 @@ describe('video recording', () => {
301301
throw error;
302302
}
303303
}
304-
});
304+
}, 180000); // 180 seconds - tests 3 resolutions with browser start/stop each, Windows CI can be slow
305305
});

0 commit comments

Comments
 (0)