Commit 856a3127 authored by Ward Bell's avatar Ward Bell

chore: slight tweaks to karma/wallaby config

parent b7e4b1c1
module.exports = function(config) { module.exports = function(config) {
var appBase = 'app/'; // transpiled app JS files var appBase = 'app/'; // transpiled app JS files
var appAssets ='base/app/'; // component assets fetched by Angular's compiler var appAssets = 'base/app/'; // component assets fetched by Angular's compiler
config.set({ config.set({
basePath: '', basePath: '',
...@@ -48,7 +48,7 @@ module.exports = function(config) { ...@@ -48,7 +48,7 @@ module.exports = function(config) {
{pattern: appBase + '**/*.css', included: false, watched: true}, {pattern: appBase + '**/*.css', included: false, watched: true},
// paths for debugging with source maps in dev tools // paths for debugging with source maps in dev tools
{pattern: appBase + '**/*.ts', included: false, watched: false}, {pattern: appBase + '**/*.ts', included: false, watched: true},
{pattern: appBase + '**/*.js.map', included: false, watched: false} {pattern: appBase + '**/*.js.map', included: false, watched: false}
], ],
......
...@@ -13,7 +13,7 @@ module.exports = function () { ...@@ -13,7 +13,7 @@ module.exports = function () {
{pattern: 'node_modules/zone.js/dist/long-stack-trace-zone.js', instrument: false}, {pattern: 'node_modules/zone.js/dist/long-stack-trace-zone.js', instrument: false},
{pattern: 'node_modules/zone.js/dist/jasmine-patch.js', instrument: false}, {pattern: 'node_modules/zone.js/dist/jasmine-patch.js', instrument: false},
{pattern: 'app/**/*.(ts|html|css)', load: false}, {pattern: 'app/**/*+(ts|html|css)', load: false},
{pattern: 'app/**/*.spec.ts', ignore: true} {pattern: 'app/**/*.spec.ts', ignore: true}
], ],
......
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