Skip to content

Commit de2f911

Browse files
authored
chore: disable the second time-to-first-query test on windows (#7101)
* disable the second time-to-first-query test on windows * add ticket number
1 parent af8989b commit de2f911

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,12 @@ 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+
// TODO(COMPASS-9554) This test is extremely flaky on Windows inside
59+
// Github Actions (ie. the smoke tests)
60+
this.skip();
61+
}
62+
5763
compass = await init(this.test?.fullTitle(), { firstRun: false });
5864

5965
const { browser } = compass;

0 commit comments

Comments
 (0)