feat(challenge30): challenge signal

This commit is contained in:
thomas
2023-07-10 22:58:16 +02:00
parent 12a04bef88
commit c5c4f2710c
22 changed files with 655 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
/* eslint-disable */
export default {
displayName: 'rxjs-to-signal',
preset: '../../jest.preset.js',
setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
coverageDirectory: '../../coverage/apps/rxjs-to-signal',
transform: {
'^.+\\.(ts|mjs|js|html)$': [
'jest-preset-angular',
{
tsconfig: '<rootDir>/tsconfig.spec.json',
stringifyContentPathRegex: '\\.(html|svg)$',
},
],
},
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',
],
};