From 563efc742019f2f7d9f834e8216c86429fe46071 Mon Sep 17 00:00:00 2001 From: Ward Bell Date: Tue, 10 Jan 2017 23:33:48 -0800 Subject: [PATCH] docs(testing): karma.conf add slash appAssets Add leading slash to appAssets variable Discovered in issue https://github.com/angular/quickstart/issues/329 --- public/docs/_examples/testing/ts/karma.conf.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/docs/_examples/testing/ts/karma.conf.js b/public/docs/_examples/testing/ts/karma.conf.js index 394c483b3e..d34fb91873 100644 --- a/public/docs/_examples/testing/ts/karma.conf.js +++ b/public/docs/_examples/testing/ts/karma.conf.js @@ -1,9 +1,9 @@ // #docregion 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