closes #486 add missing karma-test-shim.js update test files alpha.53 exclude example-config.json from plunkers
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
module.exports = function(config) {
 | 
						|
  config.set({
 | 
						|
 | 
						|
    basePath: '',
 | 
						|
 | 
						|
    frameworks: ['jasmine'],
 | 
						|
 | 
						|
    files: [
 | 
						|
      // paths loaded by Karma
 | 
						|
      {pattern: 'node_modules/systemjs/dist/system.src.js', included: true, watched: true},
 | 
						|
      {pattern: 'node_modules/angular2/bundles/angular2.js', included: true, watched: true},
 | 
						|
      {pattern: 'node_modules/angular2/bundles/testing.js', included: true, watched: true},
 | 
						|
      {pattern: 'karma-test-shim.js', included: true, watched: true},
 | 
						|
      {pattern: 'app/test/*.js', included: true, watched: true},
 | 
						|
 | 
						|
      // paths loaded via module imports
 | 
						|
      {pattern: 'app/**/*.js', included: false, watched: true},
 | 
						|
 | 
						|
      // paths loaded via Angular's component compiler
 | 
						|
      // (these paths need to be rewritten, see proxies section)
 | 
						|
      {pattern: 'app/**/*.html', included: false, watched: true},
 | 
						|
      {pattern: 'app/**/*.css', included: false, watched: true},
 | 
						|
 | 
						|
      // paths to support debugging with source maps in dev tools
 | 
						|
      {pattern: 'app/**/*.ts', included: false, watched: false},
 | 
						|
      {pattern: 'app/**/*.js.map', included: false, watched: false}
 | 
						|
    ],
 | 
						|
 | 
						|
    // proxied base paths
 | 
						|
    proxies: {
 | 
						|
      // required for component assests fetched by Angular's compiler
 | 
						|
      "/app/": "/base/app/"
 | 
						|
    },
 | 
						|
 | 
						|
    reporters: ['progress'],
 | 
						|
    port: 9877,
 | 
						|
    colors: true,
 | 
						|
    logLevel: config.LOG_INFO,
 | 
						|
    autoWatch: true,
 | 
						|
    browsers: ['Chrome'],
 | 
						|
    singleRun: true
 | 
						|
  })
 | 
						|
}
 |