mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-25 15:07:57 +00:00
19 lines
328 B
JavaScript
19 lines
328 B
JavaScript
const baseKarma = require('./base-karma')
|
|
|
|
module.exports = function (config) {
|
|
const baseConfig = baseKarma(config)
|
|
|
|
config.set(Object.assign(baseConfig, {
|
|
browsers: ['FirefoxHeadless'],
|
|
|
|
reporters: ['mocha'],
|
|
|
|
client: {
|
|
captureConsole: true,
|
|
mocha: {
|
|
reporter: 'html'
|
|
}
|
|
}
|
|
}))
|
|
}
|