Browse Source

Test console on firefox headless by default.

Jason Grout 5 years ago
parent
commit
1c55ea1a6e
1 changed files with 2 additions and 1 deletions
  1. 2 1
      tests/test-console/package.json

+ 2 - 1
tests/test-console/package.json

@@ -6,11 +6,12 @@
     "build": "tsc -b",
     "clean": "rimraf build && rimraf coverage",
     "coverage": "python run-test.py --browsers=ChromeHeadless karma-cov.conf.js",
-    "test": "jlpm run test:firefox",
+    "test": "jlpm run test:firefox-headless",
     "test:chrome": "python run-test.py --browsers=Chrome karma.conf.js",
     "test:chrome-headless": "python run-test.py --browsers=ChromeHeadless karma.conf.js",
     "test:debug": "python run-test.py  --browsers=Chrome --singleRun=false --debug=true --browserNoActivityTimeout=10000000 --browserDisconnectTimeout=10000000 karma.conf.js",
     "test:firefox": "python run-test.py --browsers=Firefox karma.conf.js",
+    "test:firefox-headless": "python run-test.py --browsers=FirefoxHeadless karma.conf.js",
     "test:ie": "python run-test.py  --browsers=IE karma.conf.js",
     "watch": "tsc -b --watch",
     "watch:src": "tsc -p src --watch"