UNPKG

angular2-nvd3

Version:
35 lines (33 loc) 829 B
// Karma configuration file, see link for more information // https://karma-runner.github.io/0.13/config/configuration-file.html var webpackConfig = require('./webpack.config'); module.exports = function (config) { config.set({ basePath: '', frameworks: ['jasmine'], plugins: [ require('karma-jasmine'), require('karma-webpack'), require('karma-phantomjs-launcher') ], files: [ 'src/test/test.ts' ], exclude: [], preprocessors: { 'src/test/test.ts': ['webpack'] }, webpack: { module: webpackConfig.module, resolve: webpackConfig.resolve }, reporters: ['progress'], port: 9876, colors: true, logLevel: config.LOG_INFO, autoWatch: true, browsers: ['PhantomJS'], singleRun: false, concurrency: Infinity }) };