source: trip-planner-front/node_modules/hdr-histogram-js/wallaby.js@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 577 bytes
Line 
1module.exports = function(wallaby) {
2 //process.env.NODE_PATH += path.delimiter + wallaby.projectCacheDir;
3
4 return {
5 files: [
6 // Source code
7 { pattern: "src/**/*.ts", load: false },
8 { pattern: "src/**/*.js", load: false },
9 { pattern: "test_files/*.hlog", load: false },
10 { pattern: "src/**/*spec.ts", ignore: true },
11 ],
12
13 tests: [
14 // Unit tests
15 { pattern: "src/**/*spec.ts" },
16 { pattern: "src/**/*.fc.spec.ts", ignore: true },
17 ],
18
19 env: { type: "node" },
20
21 testFramework: "jest",
22
23 debug: true,
24 };
25};
Note: See TracBrowser for help on using the repository browser.