Commit 182d81a3 authored by Ward Bell's avatar Ward Bell Committed by GitHub

chore: add slash to appAssets in karma.conf (#329) (#351)

Add leading slash to appAssets variable
closes #329
parent eda3873c
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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment