diff options
| author | Yuval Adam <_@yuv.al> | 2017-07-10 15:38:22 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2018-05-15 15:46:32 +0300 |
| commit | f22ca3ee0e899f055e817aaed0a140e4482cda60 (patch) | |
| tree | ef0d692a77d542061796ed75a0e32284d5af4a3a /karma.conf.js | |
| parent | 3ee77a1e62ecb2cf6ed43f50a7dcff8e3e652a99 (diff) | |
Switch to yarn and fix tests
Diffstat (limited to 'karma.conf.js')
| -rw-r--r-- | karma.conf.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/karma.conf.js b/karma.conf.js index f324a19..17a0d2a 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -6,7 +6,13 @@ module.exports = function(config) { port: 9876, colors: true, logLevel: config.LOG_INFO, - browsers: ['ChromeHeadless'], + browsers: ['HeadlessChromeWithExtensions'], + customLaunchers: { + HeadlessChromeWithExtensions: { + base: 'ChromeHeadless', + flags: ['--disable-gpu', '--load-extension=.', '--remote-debugging-port=9222'] + } + }, autoWatch: false, concurrency: Infinity }) |
