UNPKG

@nrwl/jest

Version:

The Nx Plugin for Jest contains executors and generators allowing your workspace to use the powerful Jest testing capabilities.

43 lines (42 loc) 1.04 kB
export interface JestExecutorOptions { codeCoverage?: boolean; config?: string; detectOpenHandles?: boolean; logHeapUsage?: boolean; detectLeaks?: boolean; jestConfig: string; testFile?: string; /** * @deprecated set in the jest config file instead **/ setupFile?: string; bail?: boolean | number; ci?: boolean; color?: boolean; clearCache?: boolean; findRelatedTests?: string; json?: boolean; maxWorkers?: number | string; onlyChanged?: boolean; changedSince?: string; outputFile?: string; passWithNoTests?: boolean; runInBand?: boolean; showConfig?: boolean; silent?: boolean; testNamePattern?: string; testPathIgnorePatterns?: string[]; testPathPattern?: string[]; colors?: boolean; reporters?: string[]; verbose?: boolean; coverageReporters?: string[]; coverageDirectory?: string; testResultsProcessor?: string; updateSnapshot?: boolean; useStderr?: boolean; watch?: boolean; watchAll?: boolean; testLocationInResults?: boolean; testTimeout?: number; }