Skip to content

Commit 903f3b9

Browse files
authoredJan 13, 2025··
fix(browser): fix console.time with fake timers (#7207)
1 parent 9175836 commit 903f3b9

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed
 

‎packages/browser/src/client/tester/logger.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { format, stringify } from 'vitest/utils'
22
import { getConfig } from '../utils'
33
import { rpc } from './rpc'
44

5-
const { Date, console } = globalThis
5+
const { Date, console, performance } = globalThis
66

77
export function setupConsoleLogSpy() {
88
const {
@@ -71,7 +71,7 @@ export function setupConsoleLogSpy() {
7171
if (!(label in timeLabels)) {
7272
sendLog('stderr', `Timer "${label}" does not exist`)
7373
}
74-
else if (start) {
74+
else if (typeof start !== 'undefined') {
7575
const duration = end - start
7676
sendLog('stdout', `${label}: ${duration} ms`)
7777
}

‎test/browser/specs/runner.test.ts

+2
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ describe('running browser tests', async () => {
9090
expect(stdout).toContain('count: 3')
9191
expect(stdout).toMatch(/default: [\d.]+ ms/)
9292
expect(stdout).toMatch(/time: [\d.]+ ms/)
93+
expect(stdout).toMatch(/\[console-time-fake\]: [\d.]+ ms/)
94+
expect(stdout).not.toContain('[console-time-fake]: 0 ms')
9395
})
9496

9597
test('logs are redirected to stderr', () => {

‎test/browser/test/timers.test.ts

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable no-console */
12
import { afterEach, expect, it, vi } from 'vitest'
23

34
afterEach(() => {
@@ -17,3 +18,12 @@ it('only runs a setTimeout callback once (ever)', () => {
1718
vi.runAllTimers()
1819
expect(fn).toHaveBeenCalledTimes(1)
1920
})
21+
22+
it('console.time', async () => {
23+
vi.useFakeTimers({
24+
toFake: ['Date', 'performance'],
25+
})
26+
console.time('[console-time-fake]')
27+
await new Promise(r => setTimeout(r, 500))
28+
console.timeEnd('[console-time-fake]')
29+
})

0 commit comments

Comments
 (0)
Please sign in to comment.