mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
6 lines
144 B
TypeScript
6 lines
144 B
TypeScript
import { test } from 'vitest'
|
|
|
|
test.each([1])('test each timeout', async () => {
|
|
await new Promise(resolve => setTimeout(resolve, 20))
|
|
}, 10)
|