Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 09f79e3

Browse files
authored
docs(testing): karma.conf add slash appAssets (#3088)
Add leading slash to appAssets variable Discovered in issue angular/quickstart#329
1 parent 42d08b7 commit 09f79e3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

public/docs/_examples/testing/ts/karma.conf.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// #docregion
22
module.exports = function(config) {
33

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

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

0 commit comments

Comments
 (0)