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:
parent
42d08b7800
commit
09f79e3a19
|
@ -1,9 +1,9 @@
|
||||||
// #docregion
|
// #docregion
|
||||||
module.exports = function(config) {
|
module.exports = function(config) {
|
||||||
|
|
||||||
var appBase = 'app/'; // transpiled app JS and map files
|
var appBase = 'app/'; // transpiled app JS and map files
|
||||||
var appSrcBase = 'app/'; // app source TS files
|
var appSrcBase = 'app/'; // app source TS files
|
||||||
var appAssets = 'base/app/'; // component assets fetched by Angular's compiler
|
var appAssets = '/base/app/'; // component assets fetched by Angular's compiler
|
||||||
|
|
||||||
// Testing helpers (optional) are conventionally in a folder called `testing`
|
// Testing helpers (optional) are conventionally in a folder called `testing`
|
||||||
var testingBase = 'testing/'; // transpiled test JS and map files
|
var testingBase = 'testing/'; // transpiled test JS and map files
|
||||||
|
|
Loading…
Reference in New Issue