/
githubmirror
/
element
Обзор
Документация
Войти
/
githubmirror
/
element
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
test/unit/karma.conf.js
31 строка
671 B
Jiewei Qian
chore: update test deps and conf (#14735)
18 мар 2019, 10:34
18 мар 2019, 10:34
9c7fcf3
Код
Авторство
О чём код?
const webpackConfig = require('../../build/webpack.test'); module.exports = function(config) { const configuration = { browsers: ['ChromeHeadless'], frameworks: ['mocha', 'sinon-chai'], reporters: ['spec', 'coverage'], files: ['./index.js'], preprocessors: { './index.js': ['webpack', 'sourcemap'] }, webpack: webpackConfig, webpackMiddleware: { noInfo: true }, coverageReporter: { dir: './coverage', reporters: [ { type: 'lcov', subdir: '.' }, { type: 'text-summary' } ] }, client: { mocha: { timeout: 4000 } } }; config.set(configuration); };