mirror of
				https://github.com/Xahau/xahau.js.git
				synced 2025-11-04 04:55:48 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			378 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			378 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const baseKarmaConfig = require('../../karma.config')
 | 
						|
const webpackConfig = require('./test/webpack.config')
 | 
						|
delete webpackConfig.entry
 | 
						|
 | 
						|
module.exports = function (config) {
 | 
						|
  config.set({
 | 
						|
    webpack: webpackConfig,
 | 
						|
 | 
						|
    // list of files / patterns to load in the browser
 | 
						|
    files: ['build/xahau-latest.js', 'test/integration/**/*.test.ts'],
 | 
						|
  })
 | 
						|
 | 
						|
  baseKarmaConfig(config)
 | 
						|
}
 |