apprun
Version:
JavaScript library that has Elm inspired architecture, event pub-sub and components
24 lines • 609 B
JavaScript
var webpackConfig = require('./webpack.config');
module.exports = function (config) {
config.set({
basePath: '',
frameworks: ["jasmine"],
files: [
{ pattern: "tests/*.spec.*" }
],
exclude: [
],
preprocessors: {
'tests/*.spec.*': ['webpack'],
},
webpack: webpackConfig,
reporters: ["progress"],
colors: true,
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_INFO,
browsers: ['Chrome'],
mime: {
'text/x-typescript': ['ts', 'tsx']
}
})
}