forked from aurelia/skeleton-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wallaby.js
54 lines (41 loc) · 1.08 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
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) {
wallaby.delayStart();
System.config({
paths: {
'*': '*.js'
}
});
var promises = [];
for (var i = 0, len = wallaby.tests.length; i < len; i++) {
promises.push(System['import'](wallaby.tests[i].replace(/\.js$/, '')));
}
Promise.all(promises).then(function () {
wallaby.start();
});
},
debug: false
};
};