diff options
| author | Yuval Adam <_@yuv.al> | 2017-07-10 15:38:22 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2017-07-10 15:38:22 +0300 |
| commit | a9641bfd44ef43e1f76b6769695fc8e713f2b087 (patch) | |
| tree | 3bcffe600c9e18b11a868e4676f5c903ec2a5bca /karma.conf.js | |
| parent | 872d7d35dd3bac58da25aaa2ba2b23a00212456c (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 }) |
