-
Notifications
You must be signed in to change notification settings - Fork 9
/
wallaby.js
90 lines (76 loc) · 2.67 KB
/
wallaby.js
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
'use strict';
const wallabyWebpack = require('wallaby-webpack');
const path = require('path');
const compilerOptions = Object.assign(
require('./tsconfig.json').compilerOptions);
// don't generate the declaration files (.d.ts)
compilerOptions.declaration = false;
module.exports = function (wallaby) {
const webpackPostprocessor = wallabyWebpack({
entryPatterns: [
'scripts/wallabyTest.js',
'src/**/*spec.js'
],
module: {
loaders: [
{ test: /\.css$/, loader: 'raw-loader' },
{ test: /\.html$/, loader: 'raw-loader' },
{ 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: {
modules: [
path.join(wallaby.projectCacheDir, 'demo/src'),
path.join(wallaby.projectCacheDir, 'src')
]
}
});
return {
files: [
{ pattern: 'src/**/*.ts', load: false },
{ pattern: 'src/**/*.d.ts', ignore: true },
{ pattern: 'src/**/*.css', load: false },
{ pattern: 'src/**/*.less', load: false },
{ pattern: 'src/**/*.scss', load: false },
{ pattern: 'src/**/*.sass', load: false },
{ pattern: 'src/**/*.styl', load: false },
{ pattern: 'src/**/*.html', load: false },
{ pattern: 'src/**/*.json', load: false },
{ pattern: 'scripts/*.ts', load: false },
{ pattern: 'src/**/*spec.ts', ignore: true },
{ pattern: 'demo/src/**/*.ts', load: false },
{ pattern: 'demo/src/**/*.d.ts', ignore: true },
{ pattern: 'demo/src/**/*.css', load: false },
{ pattern: 'demo/src/**/*.less', load: false },
{ pattern: 'demo/src/**/*.scss', load: false },
{ pattern: 'demo/src/**/*.sass', load: false },
{ pattern: 'demo/src/**/*.styl', load: false },
{ pattern: 'demo/src/**/*.html', load: false },
{ pattern: 'demo/src/**/*.json', load: false },
{ pattern: 'demo/src/**/*spec.ts', ignore: true }
],
tests: [
{ pattern: 'src/**/*spec.ts', load: false }
],
testFramework: 'jasmine',
preprocessors: {
'./scripts/test.ts': ['@angular/cli']
},
compilers: {
'**/*.ts': wallaby.compilers.typeScript(compilerOptions)
},
env: {
kind: 'electron'
},
postprocessor: webpackPostprocessor,
setup: function () {
window.__moduleBundler.loadTests();
},
debug: true
};
};