Commit 2891223d authored by Emerson Thompson's avatar Emerson Thompson Committed by Ward Bell

chore: standardizing of spaces in karma.conf.js (#244)

parent e33ed9a3
...@@ -49,28 +49,28 @@ module.exports = function(config) { ...@@ -49,28 +49,28 @@ module.exports = function(config) {
// Paths loaded via module imports: // Paths loaded via module imports:
// Angular itself // Angular itself
{pattern: 'node_modules/@angular/**/*.js', included: false, watched: false}, { pattern: 'node_modules/@angular/**/*.js', included: false, watched: false },
{pattern: 'node_modules/@angular/**/*.js.map', included: false, watched: false}, { pattern: 'node_modules/@angular/**/*.js.map', included: false, watched: false },
{pattern: 'systemjs.config.js', included: false, watched: false}, { pattern: 'systemjs.config.js', included: false, watched: false },
{pattern: 'systemjs.config.extras.js', included: false, watched: false}, { pattern: 'systemjs.config.extras.js', included: false, watched: false },
'karma-test-shim.js', 'karma-test-shim.js',
// transpiled application & spec code paths loaded via module imports // transpiled application & spec code paths loaded via module imports
{pattern: appBase + '**/*.js', included: false, watched: true}, { pattern: appBase + '**/*.js', included: false, watched: true },
{pattern: testBase + '**/*.js', included: false, watched: true}, { pattern: testBase + '**/*.js', included: false, watched: true },
// Asset (HTML & CSS) paths loaded via Angular's component compiler // Asset (HTML & CSS) paths loaded via Angular's component compiler
// (these paths need to be rewritten, see proxies section) // (these paths need to be rewritten, see proxies section)
{pattern: appBase + '**/*.html', included: false, watched: true}, { pattern: appBase + '**/*.html', included: false, watched: true },
{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: appSrcBase + '**/*.ts', included: false, watched: false}, { pattern: appSrcBase + '**/*.ts', included: false, watched: false },
{pattern: appBase + '**/*.js.map', included: false, watched: false}, { pattern: appBase + '**/*.js.map', included: false, watched: false },
{pattern: testSrcBase + '**/*.ts', included: false, watched: false}, { pattern: testSrcBase + '**/*.ts', included: false, watched: false },
{pattern: testBase + '**/*.js.map', included: false, watched: false} { pattern: testBase + '**/*.js.map', included: false, watched: false }
], ],
// Proxied base paths for loading assets // Proxied base paths for loading assets
......
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