aboutsummaryrefslogtreecommitdiff
path: root/node_modules/ts-loader/examples/webpack2-gulp-react-flux-babel-karma/karma.conf.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-05-24 15:10:37 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-05-24 15:11:17 +0200
commit7a3df06eb573d36142bd1a8e03c5ce8752d300b3 (patch)
tree70bfaea8884c374876f607774850a3a51c0cb381 /node_modules/ts-loader/examples/webpack2-gulp-react-flux-babel-karma/karma.conf.js
parentaca1143cb9eed16cf37f04e475e4257418dd18ac (diff)
fix build issues and add typedoc
Diffstat (limited to 'node_modules/ts-loader/examples/webpack2-gulp-react-flux-babel-karma/karma.conf.js')
-rw-r--r--node_modules/ts-loader/examples/webpack2-gulp-react-flux-babel-karma/karma.conf.js49
1 files changed, 0 insertions, 49 deletions
diff --git a/node_modules/ts-loader/examples/webpack2-gulp-react-flux-babel-karma/karma.conf.js b/node_modules/ts-loader/examples/webpack2-gulp-react-flux-babel-karma/karma.conf.js
deleted file mode 100644
index f07fbc179..000000000
--- a/node_modules/ts-loader/examples/webpack2-gulp-react-flux-babel-karma/karma.conf.js
+++ /dev/null
@@ -1,49 +0,0 @@
-/* eslint-disable no-var, strict */
-'use strict';
-
-var webpackConfig = require('./webpack.config.js');
-
-module.exports = function(config) {
- // Documentation: https://karma-runner.github.io/0.13/config/configuration-file.html
- config.set({
- browsers: [ 'PhantomJS' ],
-
- files: [
- // This ensures we have the es6 shims in place and then loads all the tests
- 'test/main.js'
- ],
-
- port: 9876,
-
- frameworks: [ 'jasmine' ],
-
- logLevel: config.LOG_INFO, //config.LOG_DEBUG
-
- preprocessors: {
- 'test/main.js': [ 'webpack', 'sourcemap' ]
- },
-
- webpack: {
- devtool: 'inline-source-map',
- module: webpackConfig.module,
- resolve: webpackConfig.resolve
- },
-
- webpackMiddleware: {
- quiet: true,
- stats: {
- colors: true
- }
- },
-
- // reporter options
- mochaReporter: {
- colors: {
- success: 'bgGreen',
- info: 'cyan',
- warning: 'bgBlue',
- error: 'bgRed'
- }
- }
- });
-};