chore: wallaby config

This commit is contained in:
marocchino 2019-11-23 10:10:39 +09:00
parent 4b7290acd5
commit 97da04af99
No known key found for this signature in database
GPG key ID: AFF521DBDB122570

15
wallaby.js Normal file
View file

@ -0,0 +1,15 @@
module.exports = function(wallaby) {
return {
files: ["src/**/*.js?(x)", "!src/**/*.spec.ts?(x)"],
tests: ["__tests__/**/*.test.ts?(x)"],
env: {
type: "node",
runner: "node"
},
testFramework: "jest",
debug: true
};
};