Skip to content

Commit

Permalink
fix: run flaky tests on GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
bonyuta0204 committed Jan 12, 2024
1 parent 3ca3174 commit c65d0b3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions test/watch/test/file-watching.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
4 changes: 0 additions & 4 deletions test/watch/test/stdin.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit c65d0b3

Please sign in to comment.