UNPKG

@nrwl/jest

Version:

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

21 lines (20 loc) 503 B
export interface JestProjectSchema { project: string; supportTsx?: boolean; /** * @deprecated use setupFile instead */ skipSetupFile?: boolean; setupFile?: 'angular' | 'web-components' | 'none'; skipSerializers?: boolean; testEnvironment?: 'node' | 'jsdom' | 'none'; /** * @deprecated use compiler: "babel" instead */ babelJest?: boolean; skipFormat?: boolean; compiler?: 'tsc' | 'babel' | 'swc'; skipPackageJson?: boolean; js?: boolean; rootProject?: boolean; }