From 182d81a34b228cbdfd70c8c823ac045e7efd193f Mon Sep 17 00:00:00 2001 From: Ward Bell Date: Tue, 10 Jan 2017 23:47:40 -0800 Subject: [PATCH] chore: add slash to appAssets in karma.conf (#329) (#351) Add leading slash to appAssets variable closes #329 --- karma.conf.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/karma.conf.js b/karma.conf.js index 2ad1cca00..e765c4eb3 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -1,8 +1,8 @@ module.exports = function(config) { - var appBase = 'app/'; // transpiled app JS and map files - var appSrcBase = 'app/'; // app source TS files - var appAssets = 'base/app/'; // component assets fetched by Angular's compiler + var appBase = 'app/'; // transpiled app JS and map files + var appSrcBase = 'app/'; // app source TS files + var appAssets = '/base/app/'; // component assets fetched by Angular's compiler // Testing helpers (optional) are conventionally in a folder called `testing` var testingBase = 'testing/'; // transpiled test JS and map files