mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-14 18:12:09 +08:00
13 lines
218 B
TypeScript
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);
|
|
}
|