-
Notifications
You must be signed in to change notification settings - Fork 0
/
wallaby.js
executable file
·57 lines (44 loc) · 1.15 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
/* eslint-disable no-var, no-shadow, dot-notation */
var babel = require('babel');
module.exports = function(wallaby) {
return {
files: [
{pattern: 'jspm_packages/system.js', instrument: false},
{pattern: 'config.js', instrument: false},
{pattern: 'src/**/*.js', load: false}
],
tests: [
{pattern: 'test/unit/**/*.spec.js', load: false}
],
compilers: {
'**/*.js': wallaby.compilers.babel({
babel: babel,
optional: [
'es7.decorators',
'es7.classProperties'
]
})
},
middleware: (app, express) => {
app.use('/jspm_packages', express.static(require('path').join(__dirname, 'jspm_packages')));
},
bootstrap: function(wallaby) {
var promises = [];
var i = 0;
var len = wallaby.tests.length;
wallaby.delayStart();
System.config({
paths: {
'*': '*.js'
}
});
for (; i < len; i++) {
promises.push(System['import'](wallaby.tests[i].replace(/\.js$/, '')));
}
Promise.all(promises).then(function() {
wallaby.start();
});
},
debug: false
};
};