feat(challenge): create 3 new challengesinit

This commit is contained in:
thomas
2022-12-16 11:25:03 +01:00
parent 3178ac95b7
commit cc1e2c147c
49 changed files with 3241 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
/* eslint-disable */
export default {
displayName: 'declarative-to-reactive',
preset: '../../jest.preset.js',
setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
globals: {
'ts-jest': {
tsconfig: '<rootDir>/tsconfig.spec.json',
stringifyContentPathRegex: '\\.(html|svg)$',
},
},
coverageDirectory: '../../coverage/apps/declarative-to-reactive',
transform: {
'^.+\\.(ts|mjs|js|html)$': 'jest-preset-angular',
},
transformIgnorePatterns: ['node_modules/(?!.*\\.mjs$)'],
snapshotSerializers: [
'jest-preset-angular/build/serializers/no-ng-attributes',
'jest-preset-angular/build/serializers/ng-snapshot',
'jest-preset-angular/build/serializers/html-comment',
],
};