-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwallaby.js
106 lines (92 loc) · 4.16 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
var wallabyWebpack = require('wallaby-webpack');
var path = require('path');
var compilerOptions = Object.assign(require('./tsconfig.json').compilerOptions);
compilerOptions.module = 'CommonJs';
module.exports = function(wallaby) {
var webpackPostprocessor = wallabyWebpack({
entryPatterns: ['wallabyTest.js', 'apps/**/*spec.js', 'libs/**/*spec.js'],
module: {
rules: [
{ test: /\.css$/, loader: ['raw-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: /\.styl$/, loaders: ['raw-loader', 'stylus-loader'] },
{
test: /\.less$/,
loaders: ['raw-loader', { loader: 'less-loader', options: { paths: [__dirname] } }]
},
{ test: /\.scss$|\.sass$/, loaders: ['raw-loader', 'sass-loader'] },
{ test: /\.(jpg|png|svg)$/, loader: 'url-loader?limit=128000' }
]
},
resolve: {
extensions: ['.js', '.ts'],
modules: [
path.join(wallaby.projectCacheDir, 'apps'),
path.join(wallaby.projectCacheDir, 'libs'),
'node_modules'
],
alias: {
'@ng-holistic/ramda': path.join(wallaby.projectCacheDir, 'libs/core/src/lib/r'),
'@ng-holistic/core': path.join(wallaby.projectCacheDir, 'libs/core/src/lib/index'),
'@ng-holistic/forms': path.join(wallaby.projectCacheDir, 'libs/forms/src/lib/index'),
'@ng-holistic/clr-controls': path.join(wallaby.projectCacheDir, 'libs/clr-controls/src/lib/index'),
'@ng-holistic/clr-forms': path.join(wallaby.projectCacheDir, 'libs/clr-forms/src/lib/index'),
'@ng-holistic/clr-lists': path.join(wallaby.projectCacheDir, 'libs/clr-lists/src/lib/index'),
'@ng-holistic/lists': path.join(wallaby.projectCacheDir, 'libs/lists/src/lib/index')
}
},
node: {
fs: 'empty',
net: 'empty',
tls: 'empty',
dns: 'empty'
}
});
return {
files: [
{ pattern: 'wallabyTest.ts', load: false },
{ pattern: 'apps/**/*.+(ts|css|less|scss|sass|styl|html|json|svg)', load: false },
{ pattern: 'apps/**/*.d.ts', ignore: true },
{ pattern: 'apps/**/*spec.ts', ignore: true },
{ pattern: 'apps/**/*-e2e/**', ignore: true },
{ pattern: 'libs/**/*.+(ts|css|less|scss|sass|styl|html|json|svg)', load: false },
{ pattern: 'libs/**/*.d.ts', ignore: true },
{ pattern: 'libs/**/*spec.ts', ignore: true },
{ pattern: 'libs/**/*-e2e/**', ignore: true },
{ pattern: 'apps/**/cypress/**', ignore: true },
{ pattern: 'libs/**/cypress/**', ignore: true }
],
tests: [
{ pattern: 'apps/**/*spec.ts', load: false },
{ pattern: 'libs/**/*spec.ts', load: false },
{ pattern: 'apps/**/*-e2e/**', ignore: true },
{ pattern: 'libs/**/*-e2e/**', ignore: true },
{ pattern: 'apps/**/cypress/**', ignore: true },
{ pattern: 'libs/**/cypress/**', ignore: true }
],
testFramework: 'jasmine',
compilers: {
'**/*.ts': wallaby.compilers.typeScript(compilerOptions)
},
middleware: function(app, express) {
var path = require('path');
app.use('/favicon.ico', express.static(path.join(__dirname, 'libs/shared/src/favicon.ico')));
app.use('/assets', express.static(path.join(__dirname, 'libs/shared/src/assets')));
},
env: {
kind: 'electron'
},
postprocessor: webpackPostprocessor,
setup: function() {
window.__moduleBundler.loadTests();
},
debug: true
};
};