Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit 182d81a

Browse files
authored
chore: add slash to appAssets in karma.conf (#329) (#351)
Add leading slash to appAssets variable closes #329
1 parent eda3873 commit 182d81a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

karma.conf.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module.exports = function(config) {
22

3-
var appBase = 'app/'; // transpiled app JS and map files
4-
var appSrcBase = 'app/'; // app source TS files
5-
var appAssets = 'base/app/'; // component assets fetched by Angular's compiler
3+
var appBase = 'app/'; // transpiled app JS and map files
4+
var appSrcBase = 'app/'; // app source TS files
5+
var appAssets = '/base/app/'; // component assets fetched by Angular's compiler
66

77
// Testing helpers (optional) are conventionally in a folder called `testing`
88
var testingBase = 'testing/'; // transpiled test JS and map files

0 commit comments

Comments
 (0)