UNPKG

@nx/jest

Version:

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

10 lines (9 loc) 456 B
/** * match testing file based on their name file */ export declare const TEST_FILE_PATTERN: RegExp; /** * Match right hand side of `export default` or `module.exports` = statements */ export declare const TS_QUERY_JEST_CONFIG_PREFIX = ":matches(ExportAssignment, BinaryExpression:has(Identifier[name=\"module\"]):has(Identifier[name=\"exports\"]))"; export declare function addTransformerToConfig(configContents: string, transformer: string): string;