diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-04-06 13:43:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-06 13:43:04 +0000 |
commit | 859d0372b5bb7297a0b8ed37a559d88a425f3799 (patch) | |
tree | 293adc0e1963b4ded2760107aa69d1f793751114 /e2e/karma.conf.js | |
parent | d37e0b92d39fe2f721bfe3330395043eb55861f3 (diff) | |
parent | b604a942a84d7c5d54029b48ae698d15ffe4f5ac (diff) |
Merge pull request #559 from ueokande/lanthan-integration-test
Replace E2E tests with lanthan
Diffstat (limited to 'e2e/karma.conf.js')
-rw-r--r-- | e2e/karma.conf.js | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/e2e/karma.conf.js b/e2e/karma.conf.js deleted file mode 100644 index fcda415..0000000 --- a/e2e/karma.conf.js +++ /dev/null @@ -1,53 +0,0 @@ -module.exports = function (config) { - - config.set({ - basePath: '', - frameworks: ['mocha'], - files: [ - 'main.js', - 'karma-delay.js', - '**/*.test.js' - ], - - preprocessors: { - '**/main.js': ['webpack'], - '**/*.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', - ], - - client: { - mocha: { - timeout: 5000 - } - } - }) -} |