mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
Co-authored-by: userquin <userquin@gmail.com> Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
6 lines
118 B
TypeScript
6 lines
118 B
TypeScript
import { test } from 'vitest'
|
|
|
|
test('hi', async() => {
|
|
await new Promise(resolve => setTimeout(resolve, 20))
|
|
}, 10)
|