mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
8 lines
184 B
TypeScript
8 lines
184 B
TypeScript
import { describe, expectTypeOf, test } from 'vitest'
|
|
|
|
describe('test', () => {
|
|
test('some-test', () => {
|
|
expectTypeOf({ a: 1 }).toEqualTypeOf({ a: "should not match" })
|
|
})
|
|
})
|