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
path: root/bin
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 /bin
parent5c221474e04bb265d45c3f414fffc5e1fdcde35d (diff)
remove test-browser-headless
Not ideal to lose Electron testing, but I think this is net win for now.
Diffstat (limited to 'bin')
-rw-r--r--bin/test.js8
1 files changed, 3 insertions, 5 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) {