Skip to content

Commit 9727e66

Browse files
committed
Fix tests
1 parent fdb5af5 commit 9727e66

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

{{cookiecutter.github_project_name}}/tests/karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module.exports = function (config) {
2727

2828

2929
karmaTypescriptConfig: {
30-
tsconfig: 'tests/src/tsconfig.json',
30+
tsconfig: 'tests/tsconfig.json',
3131
reports: {
3232
"text-summary": "",
3333
"html": "coverage",

{{cookiecutter.github_project_name}}/tests/src/tsconfig.json renamed to {{cookiecutter.github_project_name}}/tests/tsconfig.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,12 @@
88
"module": "commonjs",
99
"moduleResolution": "node",
1010
"target": "ES5",
11-
"outDir": "../build",
11+
"outDir": "build",
1212
"skipLibCheck": true,
1313
"sourceMap": true
1414
},
1515
"include": [
16-
"**/*.ts"
16+
"src/*.ts",
17+
"../src/**/*.ts"
1718
]
1819
}

0 commit comments

Comments
 (0)