mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
Co-authored-by: Vladimir Sheremet <sleuths.slews0s@icloud.com> fix https://github.com/vitest-dev/vitest/issues/2614
6 lines
99 B
TypeScript
6 lines
99 B
TypeScript
import { expect, it } from 'vitest'
|
|
|
|
it('should success', async () => {
|
|
expect(1 + 1).toBe(2)
|
|
})
|