summaryrefslogtreecommitdiff
path: root/karma.conf.js
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2017-07-10 17:17:48 +0300
committerYuval Adam <_@yuv.al>2018-05-15 15:46:32 +0300
commitc97114a4f89d87b0f3295a6790f36241d820314c (patch)
treee6e5f2dbc9e6765da9e988ac20e59eed1958f7b4 /karma.conf.js
parentf22ca3ee0e899f055e817aaed0a140e4482cda60 (diff)
Almost there with mocha, chai and chrome launcher
Diffstat (limited to 'karma.conf.js')
-rw-r--r--karma.conf.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/karma.conf.js b/karma.conf.js
deleted file mode 100644
index 17a0d2a..0000000
--- a/karma.conf.js
+++ /dev/null
@@ -1,20 +0,0 @@
-module.exports = function(config) {
- config.set({
- frameworks: ['mocha', 'chai'],
- files: ['test_*.js'],
- reporters: ['progress'],
- port: 9876,
- colors: true,
- logLevel: config.LOG_INFO,
- browsers: ['HeadlessChromeWithExtensions'],
- customLaunchers: {
- HeadlessChromeWithExtensions: {
- base: 'ChromeHeadless',
- flags: ['--disable-gpu', '--load-extension=.', '--remote-debugging-port=9222']
- }
- },
- autoWatch: false,
- concurrency: Infinity
- })
-}
-