UNPKG

1.19 kBTypeScriptView Raw
1/**
2 * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 */
7import type { Jest } from '@jest/environment';
8import type { JestExpect } from '@jest/expect';
9import type { Global } from '@jest/types';
10export declare const jest: Jest;
11export declare const expect: JestExpect;
12export declare const it: Global.GlobalAdditions['it'];
13export declare const test: Global.GlobalAdditions['test'];
14export declare const fit: Global.GlobalAdditions['fit'];
15export declare const xit: Global.GlobalAdditions['xit'];
16export declare const xtest: Global.GlobalAdditions['xtest'];
17export declare const describe: Global.GlobalAdditions['describe'];
18export declare const xdescribe: Global.GlobalAdditions['xdescribe'];
19export declare const fdescribe: Global.GlobalAdditions['fdescribe'];
20export declare const beforeAll: Global.GlobalAdditions['beforeAll'];
21export declare const beforeEach: Global.GlobalAdditions['beforeEach'];
22export declare const afterEach: Global.GlobalAdditions['afterEach'];
23export declare const afterAll: Global.GlobalAdditions['afterAll'];