From b26d027ce8326d5c233a3295c98b2147bda49727 Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Sun, 4 Feb 2018 17:50:48 +0900 Subject: add test:e2e --- e2e/karma.conf.js | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 e2e/karma.conf.js (limited to 'e2e/karma.conf.js') diff --git a/e2e/karma.conf.js b/e2e/karma.conf.js new file mode 100644 index 0000000..259eb17 --- /dev/null +++ b/e2e/karma.conf.js @@ -0,0 +1,41 @@ +module.exports = function (config) { + + config.set({ + basePath: '', + frameworks: ['mocha'], + files: [ + '**/*.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 + }, + + plugins: [ + require('./karma-webext-launcher'), + 'karma-mocha', + 'karma-webpack', + ], + }) +} -- cgit v1.2.3