|
|
|
@ -23,8 +23,7 @@ type NonAssertingMethods = {
|
|
|
|
instanceOf(value: unknown, type: Function, message?: string): void;
|
|
|
|
instanceOf(value: unknown, type: Function, message?: string): void;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
type Assert = Omit<typeof import('vitest').assert, keyof NonAssertingMethods> &
|
|
|
|
type Assert = Omit<typeof import('vitest').assert, keyof NonAssertingMethods> & NonAssertingMethods;
|
|
|
|
NonAssertingMethods;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export interface CustomRendererTest extends BaseTest {
|
|
|
|
export interface CustomRendererTest extends BaseTest {
|
|
|
|
html?: string;
|
|
|
|
html?: string;
|
|
|
|
|