-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: prevent running test cases timers after environment teardown (#2971
- Loading branch information
1 parent
a1954cc
commit bde75a3
Showing
4 changed files
with
52 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import { readFileSync, writeFileSync } from 'fs' | ||
import { afterEach, expect, test } from 'vitest' | ||
|
||
import { startWatchMode, waitFor } from './utils' | ||
|
||
const testFile = 'fixtures/math.test.ts' | ||
const testFileContent = readFileSync(testFile, 'utf-8') | ||
|
||
afterEach(() => { | ||
writeFileSync(testFile, testFileContent, 'utf8') | ||
}) | ||
|
||
test('console.log is visible on test re-run', async () => { | ||
const vitest = await startWatchMode() | ||
const testCase = ` | ||
test('test with logging', () => { | ||
console.log('First') | ||
console.log('Second') | ||
console.log('Third') | ||
expect(true).toBe(true) | ||
}) | ||
` | ||
|
||
writeFileSync(testFile, `${testFileContent}${testCase}`, 'utf8') | ||
|
||
await waitFor(() => { | ||
expect(vitest.getOutput()).toMatch('stdout | math.test.ts > test with logging') | ||
expect(vitest.getOutput()).toMatch('First') | ||
expect(vitest.getOutput()).toMatch('Second') | ||
expect(vitest.getOutput()).toMatch('Third') | ||
}) | ||
}) |