You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					25 lines
				
				599 B
			
		
		
			
		
	
	
					25 lines
				
				599 B
			| 
								 
											4 years ago
										 
									 | 
							
								module.exports = function(karma) {
							 | 
						||
| 
								 | 
							
								    karma.set({
							 | 
						||
| 
								 | 
							
								        plugins: ['karma-browserify', 'karma-chai', 'karma-sinon', 'karma-mocha', 'karma-phantomjs-launcher'],
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        frameworks: ['browserify', 'chai', 'sinon', 'mocha'],
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        files: [
							 | 
						||
| 
								 | 
							
								            'src/**/*.js',
							 | 
						||
| 
								 | 
							
								            'test/**/*.js',
							 | 
						||
| 
								 | 
							
								            './node_modules/phantomjs-polyfill/bind-polyfill.js'
							 | 
						||
| 
								 | 
							
								        ],
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        preprocessors: {
							 | 
						||
| 
								 | 
							
								            'src/**/*.js' : ['browserify'],
							 | 
						||
| 
								 | 
							
								            'test/**/*.js': ['browserify']
							 | 
						||
| 
								 | 
							
								        },
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        browserify: {
							 | 
						||
| 
								 | 
							
								            debug: true
							 | 
						||
| 
								 | 
							
								        },
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        browsers: ['PhantomJS']
							 | 
						||
| 
								 | 
							
								    });
							 | 
						||
| 
								 | 
							
								}
							 |