-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathglobal.d.ts
More file actions
18 lines (17 loc) · 811 Bytes
/
global.d.ts
File metadata and controls
18 lines (17 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
declare global {
const beforeAll: typeof import('@jest/globals').beforeAll;
const beforeEach: typeof import('@jest/globals').beforeEach;
const afterAll: typeof import('@jest/globals').afterAll;
const afterEach: typeof import('@jest/globals').afterEach;
const describe: typeof import('@jest/globals').describe;
const fdescribe: typeof import('@jest/globals').fdescribe;
const xdescribe: typeof import('@jest/globals').xdescribe;
const it: typeof import('@jest/globals').it;
const fit: typeof import('@jest/globals').fit;
const xit: typeof import('@jest/globals').xit;
const test: typeof import('@jest/globals').test;
const xtest: typeof import('@jest/globals').xtest;
const expect: typeof import('@jest/globals').expect;
const jest: typeof import('@jest/globals').jest;
}
export {};