mirror of
https://github.com/marocchino/sticky-pull-request-comment.git
synced 2025-12-12 11:41:14 +00:00
15 lines
261 B
JavaScript
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
|
|
};
|
|
};
|