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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 

42 lines
875 B

module.exports = function (config) {
var webpackConfig = require('./webpack.config.js');
config.set({
basePath: '',
frameworks: ['mocha', 'sinon'],
files: [
'test/main.ts',
'test/**/*.test.ts',
'test/**/*.test.tsx',
'test/**/*.html'
],
preprocessors: {
'test/main.ts': [ 'webpack', 'sourcemap' ],
'test/**/*.test.ts': [ 'webpack', 'sourcemap' ],
'test/**/*.test.tsx': [ 'webpack', 'sourcemap' ],
'test/**/*.html': ['html2js']
},
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
browsers: ['FirefoxHeadless'],
singleRun: true,
webpack: {
mode: 'development',
devtool: 'inline-source-map',
resolve: webpackConfig.resolve,
module: webpackConfig.module
},
webpackMiddleware: {
noInfo: true
},
reporters: ['mocha']
})
}