* feat(testing): add util to update jest configs. * feat(testing): place configurations in jest config file rather than just the builder * feat(testing): create migration and unit tests * feat(testing): fix jest template * feat(testing): fix jest template to correct unit tests * feat(testing): include globals.ts-jest for all non babel configs * feat(testing): include globals.ts-jest for node e2e * feat(testing): fix migration to run properly. Also check for angular tests using the setupfile rather than builder * feat(testing): clean up jest config functions and fix errors with some migrations * feat(testing): add new line to package.json * feat(testing): update object check to actually check for undefined * chore(testing): loop through all project targets as well as targets * chore(testing): update migration to be 10.0.0-beta.2
9 lines
202 B
TypeScript
9 lines
202 B
TypeScript
export {
|
|
addPropertyToJestConfig,
|
|
removePropertyFromJestConfig,
|
|
} from './src/utils/config/update-config';
|
|
export {
|
|
jestConfigObjectAst,
|
|
jestConfigObject,
|
|
} from './src/utils/config/functions';
|