@@ -9,22 +9,22 @@ import importedExpect = require('expect');
9
9
import type { Jest } from '@jest/environment' ;
10
10
import type { Global } from '@jest/types' ;
11
11
12
- export declare type jest = Jest ;
12
+ export declare const jest : Jest ;
13
13
14
- export declare type expect = typeof importedExpect ;
14
+ export declare const expect : typeof importedExpect ;
15
15
16
- export declare type it = Global . GlobalAdditions [ 'it' ] ;
17
- export declare type test = Global . GlobalAdditions [ 'test' ] ;
18
- export declare type fit = Global . GlobalAdditions [ 'fit' ] ;
19
- export declare type xit = Global . GlobalAdditions [ 'xit' ] ;
20
- export declare type xtest = Global . GlobalAdditions [ 'xtest' ] ;
21
- export declare type describe = Global . GlobalAdditions [ 'describe' ] ;
22
- export declare type xdescribe = Global . GlobalAdditions [ 'xdescribe' ] ;
23
- export declare type fdescribe = Global . GlobalAdditions [ 'fdescribe' ] ;
24
- export declare type beforeAll = Global . GlobalAdditions [ 'beforeAll' ] ;
25
- export declare type beforeEach = Global . GlobalAdditions [ 'beforeEach' ] ;
26
- export declare type afterEach = Global . GlobalAdditions [ 'afterEach' ] ;
27
- export declare type afterAll = Global . GlobalAdditions [ 'afterAll' ] ;
16
+ export declare const it : Global . GlobalAdditions [ 'it' ] ;
17
+ export declare const test : Global . GlobalAdditions [ 'test' ] ;
18
+ export declare const fit : Global . GlobalAdditions [ 'fit' ] ;
19
+ export declare const xit : Global . GlobalAdditions [ 'xit' ] ;
20
+ export declare const xtest : Global . GlobalAdditions [ 'xtest' ] ;
21
+ export declare const describe : Global . GlobalAdditions [ 'describe' ] ;
22
+ export declare const xdescribe : Global . GlobalAdditions [ 'xdescribe' ] ;
23
+ export declare const fdescribe : Global . GlobalAdditions [ 'fdescribe' ] ;
24
+ export declare const beforeAll : Global . GlobalAdditions [ 'beforeAll' ] ;
25
+ export declare const beforeEach : Global . GlobalAdditions [ 'beforeEach' ] ;
26
+ export declare const afterEach : Global . GlobalAdditions [ 'afterEach' ] ;
27
+ export declare const afterAll : Global . GlobalAdditions [ 'afterAll' ] ;
28
28
29
29
throw new Error (
30
30
'Do not import `@jest/globals` outside of the Jest test environment' ,
0 commit comments