pleroma-fe/test/unit/karma.conf.js

74 行
1.9 KiB
JavaScript
Raw 通常表示 履歴

2016-10-26 23:46:32 +09:00
// This is a karma config file. For more details see
// http://karma-runner.github.io/0.13/config/configuration-file.html
// we are also using it with karma-webpack
// https://github.com/webpack/karma-webpack
2019-07-07 06:54:17 +09:00
// var path = require('path')
2022-07-31 18:35:48 +09:00
const merge = require('webpack-merge')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const baseConfig = require('../../build/webpack.base.conf')
const utils = require('../../build/utils')
const webpack = require('webpack')
2019-07-07 06:54:17 +09:00
// var projectRoot = path.resolve(__dirname, '../../')
2016-10-26 23:46:32 +09:00
2022-07-31 18:35:48 +09:00
const webpackConfig = merge(baseConfig, {
2016-10-26 23:46:32 +09:00
// use inline sourcemap for karma-sourcemap-loader
module: {
2019-04-11 04:36:37 +09:00
rules: utils.styleLoaders()
2016-10-26 23:46:32 +09:00
},
2022-08-16 07:12:10 +09:00
devtool: 'inline-source-map',
2016-10-26 23:46:32 +09:00
plugins: [
new webpack.DefinePlugin({
'process.env': require('../../config/test.env')
}),
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'index.html',
inject: true
2016-10-26 23:46:32 +09:00
})
]
})
// no need for app entry during tests
delete webpackConfig.entry
module.exports = function (config) {
config.set({
// to run in additional browsers:
// 1. install corresponding karma launcher
// http://karma-runner.github.io/0.13/config/browsers.html
// 2. add it to the `browsers` array below.
2019-04-25 03:53:51 +09:00
browsers: ['FirefoxHeadless'],
2016-10-26 23:46:32 +09:00
frameworks: ['mocha', 'sinon-chai'],
2016-11-19 03:47:47 +09:00
reporters: ['mocha'],
2019-04-25 03:53:51 +09:00
customLaunchers: {
2022-07-31 18:35:48 +09:00
FirefoxHeadless: {
2019-04-25 03:53:51 +09:00
base: 'Firefox',
flags: [
2019-07-05 16:02:14 +09:00
'-headless'
2019-04-25 03:53:51 +09:00
]
}
},
2018-12-14 02:27:03 +09:00
files: [
'./index.js'
],
2016-10-26 23:46:32 +09:00
preprocessors: {
'./index.js': ['webpack', 'sourcemap']
},
webpack: webpackConfig,
webpackMiddleware: {
noInfo: true
},
2016-11-19 03:47:47 +09:00
mochaReporter: {
showDiff: true
},
2016-10-26 23:46:32 +09:00
coverageReporter: {
dir: './coverage',
reporters: [
{ type: 'lcov', subdir: '.' },
{ type: 'text-summary' }
]
}
})
}