aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-08-15 19:56:30 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-08-15 20:22:18 +0900
commitae089cf5f16e5df40e4d14a9fe844ffc83bd6774 (patch)
treeb9947244a53e8e0cc801a0522251e383a6a00122
parentbf3eef86997d81130955a26faf8954c4e04d61d5 (diff)
add karma.conf.js
-rw-r--r--karma.conf.js34
1 files changed, 34 insertions, 0 deletions
diff --git a/karma.conf.js b/karma.conf.js
new file mode 100644
index 0000000..539fb3a
--- /dev/null
+++ b/karma.conf.js
@@ -0,0 +1,34 @@
+module.exports = function (config) {
+ var webpackConfig = require('./webpack.config.js');
+
+ config.set({
+ basePath: '',
+ frameworks: ['mocha'],
+ files: ['test/**/*\.test\.js'],
+
+ preprocessors: {
+ 'test/**/*\.test\.js': [ 'webpack' ]
+ },
+
+ reporters: ['progress'],
+
+ port: 9876,
+ colors: true,
+ logLevel: config.LOG_INFO,
+ browsers: ['Firefox'],
+
+ singleRun: true,
+
+ webpack: {
+ devtool: 'inline-source-map',
+ resolve: webpackConfig.resolve,
+ module: webpackConfig.module
+ },
+
+ webpackMiddleware: {
+ noInfo: true
+ },
+
+ reporters: ['mocha']
+ })
+}