Files
2020-12-01 19:25:29 +01:00

13 lines
218 B
TypeScript

// define test-specific globals here
declare namespace jest {
interface Matchers<R, T> {
toHaveBeenWarned(): R;
toHaveBeenPrinted(): R;
}
}
declare global {
function mockFile(path: string, content: string);
}