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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
var wallabyWebpack = require('wallaby-webpack');
var path = require('path');
var compilerOptions = Object.assign(
require('./tsconfig.json').compilerOptions,
require('./src/tsconfig.spec.json').compilerOptions
);
compilerOptions.module = 'CommonJs';
module.exports = function(wallaby) {
var webpackPostprocessor = wallabyWebpack({
entryPatterns: ['src/wallabyTest.js', 'src/**/*spec.js'],
module: {
rules: [
{ test: /\.css$/, loader: ['raw-loader', 'css-loader'] },
{ test: /\.html$/, loader: 'raw-loader' },
{
test: /\.ts$/,
loader: '@ngtools/webpack',
include: /node_modules/,
query: { tsConfigPath: 'tsconfig.json' }
},
{
test: /\.js$/,
loader: 'angular2-template-loader',
exclude: /node_modules/
},
{ test: /\.json$/, loader: 'json-loader' },
{ test: /\.styl$/, loaders: ['raw-loader', 'stylus-loader'] },
{ test: /\.less$/, loaders: ['raw-loader', 'less-loader'] },
{ test: /\.scss$|\.sass$/, loaders: ['raw-loader', 'sass-loader'] },
{ test: /\.(jpg|png)$/, loader: 'url-loader?limit=128000' }
]
},
resolve: {
extensions: ['.js', '.ts'],
modules: [
path.join(wallaby.projectCacheDir, 'src/app'),
path.join(wallaby.projectCacheDir, 'src'),
'node_modules'
]
},
node: {
fs: 'empty',
net: 'empty',
tls: 'empty',
dns: 'empty'
}
});
return {
files: [
'src/setupJest.ts',
'src/**/*.ts',
'!src/**/*.spec.ts',
'!src/**/*.d.ts',
'src/**/*.json'
],
tests: ['src/**/*.spec.ts'],
testFramework: 'jest',
compilers: {
'**/*.ts': wallaby.compilers.typeScript(compilerOptions)
},
env: {
type: 'node',
runner: 'node',
kind: 'chrome'
},
setup: function(wallaby) {
//Use the configured jest file for testing
const jestConfig = {
mapCoverage: true,
globals: {
__TS_CONFIG__: {
target: 'es6',
module: 'commonjs',
moduleResolution: 'node'
},
'ts-jest': {
tsConfigFile: 'src/tsconfig.spec.json'
},
__TRANSFORM_HTML__: true
},
testRegex: '(/__tests__/.*|\\.(test|spec))\\.(ts|js)$',
setupTestFrameworkScriptFile: '<rootDir>/src/setupJest.ts',
transform: {
'^.+\\.(ts|html)$':
'<rootDir>/node_modules/jest-preset-angular/preprocessor.js'
},
transformIgnorePatterns: ['node_modules/(?!@ngrx)'],
collectCoverageFrom: [
'src/app/module/**/*.{ts}',
'!src/app/*.{ts}',
'!src/app/**/*.{js}',
'!src/app/environment/*.{ts}',
'!src/app/language/*.{ts}',
'!src/app/**/*.module.{ts}',
'!src/app/**/*.interface.{ts}',
'!src/app/**/*.state.{ts}',
'!src/app/**/*.entity.{ts}'
],
moduleFileExtensions: ['ts', 'tsx', 'js', 'json'],
testPathIgnorePatterns: ['/node_modules/', '/dist/', 'src/app/*.{js}'],
testResultsProcessor: 'jest-sonar-reporter',
moduleNameMapper: {
'app/(.*)': '<rootDir>/src/app/$1',
'@common/(.*)': '<rootDir>/src/app/common/$1'
}
};
wallaby.testFramework.configure(jestConfig);
},
debug: true
};
};
|