Skip to content

Commit

Permalink
Fix npm test
Browse files Browse the repository at this point in the history
  • Loading branch information
cmgustavo committed Dec 14, 2018
1 parent f5f42cf commit 8268cb5
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,20 +65,20 @@
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "test.ts",
"main": "src/test.ts",
"karmaConfig": "test/karma.conf.js",
"polyfills": "polyfills.ts",
"tsConfig": "tsconfig.spec.json",
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.spec.json",
"codeCoverageExclude": [
"polyfills.ts",
"test.ts",
"mocks.ts",
"**/*.mock.ts",
"**/node_modules/**"
"src/polyfills.ts",
"src/test.ts",
"src/mocks.ts",
"src/**/*.mock.ts",
"src/**/node_modules/**"
],
"scripts": [],
"styles": [],
"assets": ["assets", "favicon.ico"]
"assets": ["src/assets", "src/favicon.ico"]
}
},
"lint": {
Expand Down

0 comments on commit 8268cb5

Please sign in to comment.