feat(doc): move harness

This commit is contained in:
thomas
2023-10-17 23:09:21 +02:00
parent 3bed1449f5
commit 82142f822c
20 changed files with 24 additions and 24 deletions

View File

@@ -0,0 +1,21 @@
/* eslint-disable */
export default {
displayName: 'test-harness',
preset: '../../../jest.preset.js',
setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
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',
],
};