UNPKG

@kamiazya/jest-dynamic

Version:

An extension to dynamically switch the Jest test suite according to the environment (such as platform).

8 lines (7 loc) 229 B
import { Condition, ITestClosures } from './types'; export declare const jests: { only: ITestClosures; skip: ITestClosures; base: ITestClosures; }; export declare function judge(condition: Condition): boolean;