ngx-fastboot
Version:
ngx-fastboot is an Angular library designed to dynamically load configuration settings at runtime, optimizing application startup performance by offloading configurations to a separate compilation chunk.
19 lines • 432 B
JavaScript
module.exports = {
preset: "jest-preset-angular",
collectCoverage: true,
coverageDirectory: 'coverage',
coverageReporters: ['text', 'lcov'],
setupFilesAfterEnv: [
'<rootDir>/src/setup.jest.ts'
],
testPathIgnorePatterns: [
'<rootDir>/node_modules/',
'<rootDir>/dist/'
],
globals: {
tsConfig: '<rootDir>/tsconfig.spec.json',
},
transform: {
'^.+\\.(ts|js|html)$': 'jest-preset-angular'
}
}