You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
577 B
25 lines
577 B
module.exports = function(wallaby) {
|
|
//process.env.NODE_PATH += path.delimiter + wallaby.projectCacheDir;
|
|
|
|
return {
|
|
files: [
|
|
// Source code
|
|
{ pattern: "src/**/*.ts", load: false },
|
|
{ pattern: "src/**/*.js", load: false },
|
|
{ pattern: "test_files/*.hlog", load: false },
|
|
{ pattern: "src/**/*spec.ts", ignore: true },
|
|
],
|
|
|
|
tests: [
|
|
// Unit tests
|
|
{ pattern: "src/**/*spec.ts" },
|
|
{ pattern: "src/**/*.fc.spec.ts", ignore: true },
|
|
],
|
|
|
|
env: { type: "node" },
|
|
|
|
testFramework: "jest",
|
|
|
|
debug: true,
|
|
};
|
|
};
|