mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
24 lines
1.2 KiB
TypeScript
24 lines
1.2 KiB
TypeScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
import importedExpect = require('expect');
|
|
import { Jest } from '@jest/environment';
|
|
import { Global } from '@jest/types';
|
|
export declare type jest = Jest;
|
|
export declare type expect = typeof importedExpect;
|
|
export declare type it = Global.GlobalAdditions['it'];
|
|
export declare type test = Global.GlobalAdditions['test'];
|
|
export declare type fit = Global.GlobalAdditions['fit'];
|
|
export declare type xit = Global.GlobalAdditions['xit'];
|
|
export declare type xtest = Global.GlobalAdditions['xtest'];
|
|
export declare type describe = Global.GlobalAdditions['describe'];
|
|
export declare type xdescribe = Global.GlobalAdditions['xdescribe'];
|
|
export declare type fdescribe = Global.GlobalAdditions['fdescribe'];
|
|
export declare type beforeAll = Global.GlobalAdditions['beforeAll'];
|
|
export declare type beforeEach = Global.GlobalAdditions['beforeEach'];
|
|
export declare type afterEach = Global.GlobalAdditions['afterEach'];
|
|
export declare type afterAll = Global.GlobalAdditions['afterAll'];
|