marocchino-sticky-pull-requ.../wallaby.js
2019-11-23 10:10:39 +09:00

15 lines
261 B
JavaScript

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
};
};