We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 612f06b commit 4f1ba6aCopy full SHA for 4f1ba6a
wallaby.js
@@ -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