import Runner from '../../runner'; import { Workspace } from '../../workspace'; import { Sequencer } from '../../types'; import createConfig, { Options as ConfigOptions } from './config'; export interface Options extends ConfigOptions { watch: boolean; cacheDirectory: string | undefined; debug: boolean; maxWorkers: number | undefined; testNamePattern: string | undefined; testRegex: string; updateSnapshot: boolean; coverage: boolean; graphql: boolean; sequencer: Sequencer; detectOpenHandles?: boolean; reporters?: string | undefined; runTestsByPath?: string | undefined; } export { createConfig }; export default function runJest(workspace: Workspace, { watch, cacheDirectory, debug, updateSnapshot, testNamePattern, testRegex, coverage, maxWorkers, graphql, detectOpenHandles, reporters, runTestsByPath, ...options }: Partial, runner: Runner): Promise; //# sourceMappingURL=index.d.ts.map