Skip to content

Commit b272bb6

Browse files
committed
disable the second time-to-first-query test on windows
1 parent af8989b commit b272bb6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

packages/compass-e2e-tests/tests/time-to-first-query.test.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@ describe('Time to first query', function () {
5454
it('can open compass, connect to a database and run a query on a collection (second run onwards)', async function () {
5555
// start compass inside the test so that the time is measured together
5656

57+
if (process.platform === 'win32') {
58+
// this test is extremely flaky on Windows inside Github Actions (ie. the smoke tests)
59+
this.skip();
60+
}
61+
5762
compass = await init(this.test?.fullTitle(), { firstRun: false });
5863

5964
const { browser } = compass;

0 commit comments

Comments
 (0)