You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
module.exports = function (config) {
|
|
|
|
|
|
|
|
config.set({
|
|
|
|
basePath: '',
|
|
|
|
frameworks: ['mocha'],
|
|
|
|
files: [
|
|
|
|
'karma-delay.js',
|
|
|
|
'**/*.test.js'
|
|
|
|
],
|
|
|
|
|
|
|
|
preprocessors: {
|
|
|
|
'**/*.test.js': ['webpack']
|
|
|
|
},
|
|
|
|
|
|
|
|
port: 9876,
|
|
|
|
colors: true,
|
|
|
|
logLevel: config.LOG_INFO,
|
|
|
|
|
|
|
|
customLaunchers: {
|
|
|
|
FirefoxWebExtRunner: {
|
|
|
|
base: 'FirefoxWebExt',
|
|
|
|
sourceDirs: [ '.', 'e2e/ambassador'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
browsers: ['FirefoxWebExtRunner'],
|
|
|
|
sauceLabs: {
|
|
|
|
username: 'michael_jackson'
|
|
|
|
},
|
|
|
|
|
|
|
|
singleRun: true,
|
|
|
|
|
|
|
|
webpackMiddleware: {
|
|
|
|
noInfo: true
|
|
|
|
},
|
|
|
|
|
|
|
|
reporters: ['mocha'],
|
|
|
|
browserDisconnectTimeout: 5000,
|
|
|
|
|
|
|
|
plugins: [
|
|
|
|
require('./karma-webext-launcher'),
|
|
|
|
'karma-mocha',
|
|
|
|
'karma-webpack',
|
|
|
|
'karma-mocha-reporter',
|
|
|
|
],
|
|
|
|
})
|
|
|
|
}
|