* chore(angular): bump ngrx to 13.0.0 * fix(angular): add path filter to resolver for exports * fix(testing): add mjs to jest module extensions and add dependency on resolve.exports Co-authored-by: Jason Jean <jasonjean1993@gmail.com>
11 lines
279 B
TypeScript
11 lines
279 B
TypeScript
export = {
|
|
testMatch: ['**/+(*.)+(spec|test).+(ts|js)?(x)'],
|
|
resolver: '@nrwl/jest/plugins/resolver',
|
|
moduleFileExtensions: ['ts', 'js', 'mjs', 'html'],
|
|
coverageReporters: ['html'],
|
|
transform: {
|
|
'^.+\\.(ts|js|html)$': 'ts-jest',
|
|
},
|
|
testEnvironment: 'jsdom',
|
|
};
|