Skip to content

Commit c1fac28

Browse files
committed
Add wallabyjs config
1 parent 69991e7 commit c1fac28

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

wallaby.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
export default {
2+
trace: true,
3+
files: [
4+
'package.json',
5+
'tsconfig.json',
6+
'src/**/*.ts',
7+
'test/**/*.ts',
8+
'!test/**/*.spec.ts'
9+
],
10+
tests: [
11+
'test/**/*.spec.ts'
12+
],
13+
14+
workers: {
15+
restart: true
16+
},
17+
18+
testFramework: 'mocha',
19+
env: {
20+
type: 'node'
21+
}
22+
};

0 commit comments

Comments
 (0)