Skip to content

Commit 4f1ba6a

Browse files
davegomeztimneutkens
authored andcommitted
Add wallaby.js support (vercel#1742)
1 parent 612f06b commit 4f1ba6a

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

wallaby.js

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
module.exports = function (wallaby) {
2+
return {
3+
files: [
4+
'server/**/*.js',
5+
'client/**/*.js',
6+
'lib/**/*.js',
7+
'dist/**/*.js',
8+
'test/**/*.*',
9+
'!test/**/*.test.js'
10+
],
11+
12+
tests: [
13+
'test/**/*.test.js',
14+
'!test/integration/**/*.test.js'
15+
],
16+
17+
compilers: {
18+
'**/*.js': wallaby.compilers.babel()
19+
},
20+
21+
env: {
22+
type: 'node',
23+
runner: 'node',
24+
params: {
25+
env: 'NODE_PATH=test/lib'
26+
}
27+
},
28+
29+
testFramework: 'jest'
30+
}
31+
}

0 commit comments

Comments
 (0)