material-motion-runtime
Version:
The core architecture for Material Motion.
46 lines (45 loc) • 900 B
JavaScript
module.exports = function(config) {
config.set({
basePath: '',
frameworks: ['mocha'],
browsers: ['Chrome', 'ChromeCanary', 'Safari', 'Firefox'],
reporters: ['progress'],
client: {
mocha: {
reporter: 'html',
},
},
files: [
'**/src/**/__tests__/**',
],
exclude: [
'**/*.map',
],
preprocessors: {
'**/*.ts': ['webpack'],
'**/*.js': ['webpack'],
},
webpack: {
devtool: 'eval',
resolve: {
extensions: ['.js', '.ts'],
},
module: {
loaders: [
{
test: /\.tsx?$/, loader: 'ts-loader?transpileOnly=true',
},
],
},
},
mime: {
'text/x-typescript': ['ts', 'tsx'],
},
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
singleRun: false,
concurrency: Infinity,
});
};