diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-02-14 18:43:28 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-14 18:43:28 +0900 |
commit | a48915d4e090378a672d780b2fbc93e1af6e082c (patch) | |
tree | 2e6a4295935577c5e0facbb3f5d569893bf28afe /e2e/karma.conf.js | |
parent | 5412584a7c453d074dca6d58814e29590085ff73 (diff) | |
parent | f63920e25e80ca0e472d3514fd56e27fbc505e6f (diff) |
Merge pull request #329 from ueokande/e2e-test
End-to-End testing
Diffstat (limited to 'e2e/karma.conf.js')
-rw-r--r-- | e2e/karma.conf.js | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/e2e/karma.conf.js b/e2e/karma.conf.js new file mode 100644 index 0000000..2b60ca9 --- /dev/null +++ b/e2e/karma.conf.js @@ -0,0 +1,45 @@ +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'], + + plugins: [ + require('./karma-webext-launcher'), + 'karma-mocha', + 'karma-webpack', + 'karma-mocha-reporter', + ], + }) +} |