mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-07 23:40:21 -05:00
8e07318a9f
* 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
5 lines
165 B
TypeScript
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
|
|
|