| 155 | }) |
| 156 | |
| 157 | interface CustomMatchers<R = unknown> { |
| 158 | toHaveRedirect(redirectTo: string | null): R |
| 159 | toHaveSessionForUser(userId: string): Promise<R> |
| 160 | toSendToast(toast: ToastInput): Promise<R> |
| 161 | } |
| 162 | |
| 163 | declare module 'vitest' { |
| 164 | interface Assertion<T = any> extends CustomMatchers<T> {} |
no outgoing calls
no test coverage detected