Files
cypress/npm/vue/test-tsd/index.d.ts
T
Lachlan Miller 8e07318a9f feat(npm/vue): expose Test Utils API (#22757)
* expose test utils object from cypress/mount

* inline test utils types and rewrite cli/vue/index.d.ts to use inline types

* update readme

* typo and fix comment

* revert accidental change

* revert accidental change
2022-07-16 13:59:49 +10:00

5 lines
165 B
TypeScript

export function expectType<T>(value: T): void
export function expectError<T>(value: T): void
export function expectAssignable<T, T2 extends T = T>(value: T2): void