Last change
on this file since 6a80231 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
577 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | module.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.