index.d.ts 1.2 KB

1234567891011121314151617181920212223
  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. */
  7. import type { Jest } from '@jest/environment';
  8. import type { Global } from '@jest/types';
  9. import importedExpect = require('expect');
  10. export declare const jest: Jest;
  11. export declare const expect: typeof importedExpect;
  12. export declare const it: Global.GlobalAdditions['it'];
  13. export declare const test: Global.GlobalAdditions['test'];
  14. export declare const fit: Global.GlobalAdditions['fit'];
  15. export declare const xit: Global.GlobalAdditions['xit'];
  16. export declare const xtest: Global.GlobalAdditions['xtest'];
  17. export declare const describe: Global.GlobalAdditions['describe'];
  18. export declare const xdescribe: Global.GlobalAdditions['xdescribe'];
  19. export declare const fdescribe: Global.GlobalAdditions['fdescribe'];
  20. export declare const beforeAll: Global.GlobalAdditions['beforeAll'];
  21. export declare const beforeEach: Global.GlobalAdditions['beforeEach'];
  22. export declare const afterEach: Global.GlobalAdditions['afterEach'];
  23. export declare const afterAll: Global.GlobalAdditions['afterAll'];