mirror of
				https://github.com/KevinMidboe/vue-js-modal.git
				synced 2025-10-29 18:00:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			44 lines
		
	
	
		
			831 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			831 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // Karma configuration
 | |
| var webpackConfig = require('../../build/webpack.test.config.js')
 | |
| 
 | |
| module.exports = function(config) {
 | |
|   config.set({
 | |
|     frameworks: [
 | |
|       'mocha'
 | |
|     ],
 | |
|     files: [
 | |
|       './tests.webpack.js'
 | |
|     ],
 | |
|     browsers: [
 | |
|       'Chrome'
 | |
|     ],
 | |
|     preprocessors: {
 | |
|       './tests.webpack.js': ['webpack', 'sourcemap']
 | |
|     },
 | |
|     reporters: ['spec'],
 | |
|     plugins: [
 | |
|       // Launchers
 | |
|       'karma-chrome-launcher',
 | |
| 
 | |
|       // Test Libraries
 | |
|       'karma-mocha',
 | |
|       'karma-sinon-chai',
 | |
| 
 | |
|       // Preprocessors
 | |
|       'karma-webpack',
 | |
|       'karma-sourcemap-loader',
 | |
|       // Reporters
 | |
|       'karma-spec-reporter',
 | |
|       'karma-coverage'
 | |
|     ],
 | |
| 
 | |
|     webpack: webpackConfig,
 | |
|     webpackMiddleware: {
 | |
|       noInfo: true
 | |
|     },
 | |
|     logLevel: config.LOG_INFO,
 | |
|     singleRun: true,
 | |
|     concurrency: Infinity,
 | |
|   })
 | |
| }
 |