From c65d0b3021001d1625bf0ebce75140383887d8e3 Mon Sep 17 00:00:00 2001 From: Yuta Nakamura Date: Mon, 8 Jan 2024 15:37:37 +0900 Subject: [PATCH] fix: run flaky tests on GitHub action --- test/watch/test/file-watching.test.ts | 4 ---- test/watch/test/stdin.test.ts | 4 ---- 2 files changed, 8 deletions(-) diff --git a/test/watch/test/file-watching.test.ts b/test/watch/test/file-watching.test.ts index 52e7c57a4950..266aeecc9c9e 100644 --- a/test/watch/test/file-watching.test.ts +++ b/test/watch/test/file-watching.test.ts @@ -40,10 +40,6 @@ afterEach(() => { cleanups.splice(0).forEach(cleanup => cleanup()) }) -// TODO: Fix flakiness and enable on CI -if (process.env.GITHUB_ACTIONS) - test.only('skip tests on CI', () => {}) - test('editing source file triggers re-run', async () => { const vitest = await runVitestCli(...cliArgs) diff --git a/test/watch/test/stdin.test.ts b/test/watch/test/stdin.test.ts index aea31f154b7e..29a8c7f03879 100644 --- a/test/watch/test/stdin.test.ts +++ b/test/watch/test/stdin.test.ts @@ -17,10 +17,6 @@ afterEach(() => { cleanups.splice(0).forEach(fn => fn()) }) -// TODO: Fix flakiness and enable on CI -if (process.env.GITHUB_ACTIONS) - test.only('skip tests on CI', () => {}) - test('quit watch mode', async () => { const vitest = await runVitestCli(...cliArgs)