import { Options } from 'yargs'; import { Sequencer } from '../../types'; import { Options as CommonOptions } from './common'; export declare const command = "test [test-regex]"; export declare const desc = "runs all tests"; export declare const builder: { [key: string]: Options; }; export interface Argv extends CommonOptions { $0: string; testNamePattern?: string; testRegex?: string; watch?: boolean; cacheDirectory?: string; debug: boolean; maxWorkers?: number; updateSnapshot?: boolean; coverage?: boolean; graphql?: boolean; sequencer: Sequencer; detectOpenHandles?: boolean; reporters?: string; runTestsByPath?: string; } export declare function handler(argv: Argv): Promise; //# sourceMappingURL=test.d.ts.map