Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2018-02-21 21:28:45 +0300
committerFeross Aboukhadijeh <feross@feross.org>2018-02-21 21:28:45 +0300
commit72afbf59359bb11ca2308e9fe31fddd128c10fa5 (patch)
treee95d2744d4d837b21324534d002ac90bb3e98b04
parent5c221474e04bb265d45c3f414fffc5e1fdcde35d (diff)
remove test-browser-headless
Not ideal to lose Electron testing, but I think this is net win for now.
-rw-r--r--bin/test.js8
-rw-r--r--package.json1
2 files changed, 3 insertions, 6 deletions
diff --git a/bin/test.js b/bin/test.js
index 7c6da9c..f1be65f 100644
--- a/bin/test.js
+++ b/bin/test.js
@@ -6,11 +6,9 @@ var runSauceLabs = !process.env.CI ||
(process.env.SAUCE_USERNAME && process.env.SAUCE_ACCESS_KEY)
npmRun('test-node', function () {
- npmRun('test-browser-headless', function () {
- if (runSauceLabs) {
- npmRun('test-browser')
- }
- })
+ if (runSauceLabs) {
+ npmRun('test-browser')
+ }
})
function npmRun (scriptName, onSuccess) {
diff --git a/package.json b/package.json
index 029bd1b..750ccdc 100644
--- a/package.json
+++ b/package.json
@@ -116,7 +116,6 @@
"build-debug": "browserify -s WebTorrent -e ./ > webtorrent.debug.js",
"size": "npm run build && cat webtorrent.min.js | gzip | wc -c",
"test": "standard && node ./bin/test.js",
- "test-browser-headless": "zuul --electron -- test/*.js test/browser/*.js",
"test-browser": "airtap -- test/*.js test/browser/*.js",
"test-browser-local": "airtap --local -- test/*.js test/browser/*.js",
"test-node": "tape test/*.js test/node/*.js",