diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2021-09-28 22:58:07 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2021-09-28 22:58:07 +0900 |
commit | c843809ba29bd70c28b9a19e4cb3f1002edee781 (patch) | |
tree | c1f5ac069ca758c3e16264275a66333d6e5a5f6b | |
parent | 9a0c283ae2ebb7321b8f46a97178e5e284b02da4 (diff) |
Remove karma config
-rw-r--r-- | karma.conf.js | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/karma.conf.js b/karma.conf.js deleted file mode 100644 index 92f67ea..0000000 --- a/karma.conf.js +++ /dev/null @@ -1,42 +0,0 @@ -module.exports = function (config) { - - var webpackConfig = require('./webpack.config.js'); - - config.set({ - basePath: '', - frameworks: ['mocha', 'sinon'], - files: [ - 'test/main.ts', - 'test/**/*.test.ts', - 'test/**/*.test.tsx', - 'test/**/*.html' - ], - - preprocessors: { - 'test/main.ts': [ 'webpack', 'sourcemap' ], - 'test/**/*.test.ts': [ 'webpack', 'sourcemap' ], - 'test/**/*.test.tsx': [ 'webpack', 'sourcemap' ], - 'test/**/*.html': ['html2js'] - }, - - port: 9876, - colors: true, - logLevel: config.LOG_INFO, - browsers: ['FirefoxHeadless'], - - singleRun: true, - - webpack: { - mode: 'development', - devtool: 'inline-source-map', - resolve: webpackConfig.resolve, - module: webpackConfig.module - }, - - webpackMiddleware: { - noInfo: true - }, - - reporters: ['mocha'] - }) -} |