docs(testing): karma.conf add slash appAssets (#3088)

Add leading slash to appAssets variable
Discovered in issue https://github.com/angular/quickstart/issues/329
This commit is contained in:
Ward Bell 2017-01-11 00:08:58 -08:00 committed by GitHub
parent 42d08b7800
commit 09f79e3a19
1 changed files with 3 additions and 3 deletions

View File

@ -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