2017-03-09 04:58:38 +08:00
|
|
|
const karmaConfig = {
|
2015-10-01 11:16:11 +08:00
|
|
|
basePath: '',
|
|
|
|
|
|
|
|
frameworks: ['qunit'],
|
|
|
|
|
|
|
|
proxies: {
|
2017-08-09 07:22:05 +08:00
|
|
|
'/dist/brandable_css/': '/base/public/dist/brandable_css/',
|
|
|
|
'/images/': '/base/public/images/'
|
2015-10-01 11:16:11 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
exclude: [],
|
|
|
|
|
|
|
|
// 'dots', 'progress', 'junit', 'growl', 'coverage', 'spec'
|
2016-07-12 03:03:13 +08:00
|
|
|
reporters: ['progress', 'coverage'],
|
2017-02-14 11:57:26 +08:00
|
|
|
// enable the verbose reporter if you want to have more information of where/how specs fail
|
|
|
|
// reporters: ['verbose'],
|
|
|
|
|
2016-07-12 03:03:13 +08:00
|
|
|
|
|
|
|
coverageReporter: {
|
|
|
|
type: 'html',
|
|
|
|
dir: 'coverage-js/',
|
|
|
|
subdir: '.'
|
|
|
|
},
|
2015-10-01 11:16:11 +08:00
|
|
|
|
|
|
|
port: 9876,
|
|
|
|
|
|
|
|
colors: true,
|
|
|
|
|
|
|
|
autoWatch: true,
|
|
|
|
|
|
|
|
// - Chrome
|
|
|
|
// - ChromeCanary
|
2017-08-16 00:17:33 +08:00
|
|
|
// - ChromeHeadless
|
2015-10-01 11:16:11 +08:00
|
|
|
// - Firefox
|
|
|
|
// - Opera (has to be installed with `npm install karma-opera-launcher`)
|
|
|
|
// - Safari (only Mac; has to be installed with `npm install karma-safari-launcher`)
|
|
|
|
// - PhantomJS
|
|
|
|
// - IE (only Windows; has to be installed with `npm install karma-ie-launcher`)
|
2017-02-14 11:57:26 +08:00
|
|
|
browsers: ['Chrome'],
|
2015-10-01 11:16:11 +08:00
|
|
|
|
2017-08-16 00:17:33 +08:00
|
|
|
// Run headless chrome with `karma start --browsers ChromeHeadlessNoSandbox`
|
|
|
|
customLaunchers: {
|
|
|
|
ChromeHeadlessNoSandbox: {
|
|
|
|
base: 'ChromeHeadless',
|
|
|
|
flags: ['--no-sandbox'] // needed for running tests in local docker
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-10-01 11:16:11 +08:00
|
|
|
// If browser does not capture in given timeout [ms], kill it
|
|
|
|
captureTimeout: 60000,
|
|
|
|
|
2016-10-19 01:11:26 +08:00
|
|
|
browserNoActivityTimeout: 2000000,
|
2016-06-07 04:03:40 +08:00
|
|
|
|
2017-02-14 11:57:26 +08:00
|
|
|
reportSlowerThan: 1000,
|
|
|
|
|
|
|
|
// normally QUnit wraps each test in a try/catch so a single spec failing
|
|
|
|
// doesn't stop the whole test suite. In dev, if you want to click the
|
|
|
|
// "pause on exception" thing in chrome and have it stop on your failing test, enable notrycatch
|
|
|
|
// client: {qunit: {notrycatch: true}},
|
|
|
|
|
|
|
|
// by default we keep the browser open so it refreshes with any changes
|
|
|
|
// but in `npm test` (which is what jenkins CI runs) we override it so
|
|
|
|
// it just runs once and then exits.
|
2017-03-09 04:58:38 +08:00
|
|
|
singleRun: false,
|
2017-02-14 11:57:26 +08:00
|
|
|
|
|
|
|
files: [
|
|
|
|
{pattern: 'spec/javascripts/webpack_spec_index.js', included: true, served: true},
|
|
|
|
{pattern: 'spec/javascripts/fixtures/*', included: false, served: true},
|
|
|
|
{pattern: 'public/dist/brandable_css/**/*.css', included: false, served: true},
|
|
|
|
],
|
|
|
|
|
|
|
|
preprocessors: {
|
|
|
|
'spec/javascripts/webpack_spec_index.js': ['webpack']
|
|
|
|
},
|
|
|
|
|
|
|
|
webpack: require('./webpack.test.config'),
|
2017-03-09 04:58:38 +08:00
|
|
|
}
|
2015-10-01 11:16:11 +08:00
|
|
|
|
2017-02-09 14:52:26 +08:00
|
|
|
module.exports = function (config) {
|
2015-10-01 11:16:11 +08:00
|
|
|
// config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
|
2017-03-09 04:58:38 +08:00
|
|
|
karmaConfig.logLevel = config.LOG_INFO
|
2017-02-09 14:52:26 +08:00
|
|
|
config.set(karmaConfig)
|
|
|
|
}
|