blob: c02f096583bff4e87f6896c31cc7b53176ed59b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
const ngxWallabyJest = require('ngx-wallaby-jest');
module.exports = function (wallaby) {
return {
files: [
'src/**/*.+(ts|html|json|snap|css|less|sass|scss|jpg|jpeg|gif|png|svg)',
'tsconfig.json',
'tsconfig.spec.json',
'jest.config.js',
'!src/**/*.spec.ts',
],
tests: ['src/**/*.spec.ts'],
env: {
type: 'node',
runner: 'node'
},
compilers: {
'**/*.ts?(x)': wallaby.compilers.typeScript({ module: 'commonjs' }),
},
preprocessors: {
// This translate templateUrl and styleUrls to the right implementation
// For wallaby
'projects/**/*.component.ts': ngxWallabyJest,
},
testFramework: 'jest'
};
};
|