Skip to content
Snippets Groups Projects
Select Git revision
  • f136ce69788c06024da50406acf0360394434c38
  • main default protected
  • release
  • 0.21.0
  • 0.20.0
  • 0.19.0
  • 0.18.0
  • 0.17.0
  • 0.16.0
  • 0.15.0
  • 0.14.0
  • 0.13.0
  • 0.11.0
  • 0.10.0
  • 0.9.0
  • 0.8.0
  • 0.7.0
  • 0.6.0
  • 0.5.0
  • 0.4.2
  • 0.4.1
  • 0.4.0
  • 0.3.0
23 results

pom.xml

Blame
  • jest.config.js 633 B
    module.exports = {
    	displayName: 'goofy',
    	preset: '../../jest.preset.js',
    	setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
    	globals: {
    		'ts-jest': {
    			tsconfig: '<rootDir>/tsconfig.spec.json',
    			stringifyContentPathRegex: '\\.(html|svg)$',
    		},
    	},
    	coverageDirectory: '../../coverage/apps/goofy',
    	snapshotSerializers: [
    		'jest-preset-angular/build/serializers/no-ng-attributes',
    		'jest-preset-angular/build/serializers/ng-snapshot',
    		'jest-preset-angular/build/serializers/html-comment',
    	],
    	transform: {
    		'^.+.(ts|mjs|js|html)$': 'jest-preset-angular',
    	},
    	transformIgnorePatterns: ['node_modules/(?!.*.mjs$)'],
    };