From 3405e9a94e8de31f525f158b785fad9762644e86 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Thu, 26 Jul 2018 21:18:51 -0700 Subject: [PATCH] remove airtap --- .airtap.yml | 13 ------------- .npmignore | 1 - .travis.yml | 8 -------- README.md | 2 -- package.json | 6 +----- 5 files changed, 1 insertion(+), 29 deletions(-) delete mode 100644 .airtap.yml diff --git a/.airtap.yml b/.airtap.yml deleted file mode 100644 index bdb9a61..0000000 --- a/.airtap.yml +++ /dev/null @@ -1,13 +0,0 @@ -sauce_connect: true -loopback: airtap.local -browsers: - - name: chrome - version: latest - - name: firefox - version: latest - - name: safari - version: latest - - name: microsoftedge - version: latest - - name: iphone - version: latest diff --git a/.npmignore b/.npmignore index ba535c6..fcfb683 100644 --- a/.npmignore +++ b/.npmignore @@ -1,3 +1,2 @@ -.airtap.yml .travis.yml test/ diff --git a/.travis.yml b/.travis.yml index f4644ba..c159f6a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,3 @@ language: node_js node_js: - lts/* -addons: - sauce_connect: true - hosts: - - airtap.local -env: - global: - - secure: Htsm8eeR11ph6lbAOLPbFfJGou8eDPQMfLXUBx6c9+QgrbBKHM1RKscJNvSi1AM1rOOKSk1pCZwqVR2n+9kQs30MxZppyIngiy5Jcz7/b5FDvnm/JkNzq+7sEeGZzRK11XmFkWuYRK9TvUaDuuo/NOc1NJc0ics/gzrjNLcT1tw= - - secure: FufpUBE/caYoQ5MfsIWFYVM0C4gj+4OSaqu6W8exucFDB68zTmO0te11tOwg98PhFnSaDbJ7h3gWXYGTpbFUErkeMBRMTsNjYYoQhcWWjzD4yo5iIfh215TJ5vhE4sIeCCi0TxHgbJkF3KthsUyaOdy/Q3sFISZ/VQSPFBDdmbU= diff --git a/README.md b/README.md index 189763c..abbce0b 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,6 @@ ### BitTorrent Extension for Peers to Send Metadata Files (BEP 9) -[![Sauce Test Status](https://saucelabs.com/browser-matrix/ut_metadata.svg)](https://saucelabs.com/u/ut_metadata) - JavaScript implementation of the [Extension for Peers to Send Metadata Files (BEP 9)](http://www.bittorrent.org/beps/bep_0009.html). Use with [bittorrent-protocol](https://www.npmjs.com/package/bittorrent-protocol). The purpose of this extension is to allow clients to join a swarm and complete a download without the need of downloading a .torrent file first. This extension instead allows clients to download the metadata from peers. It makes it possible to support magnet links, a link on a web page only containing enough information to join the swarm (the info hash). diff --git a/package.json b/package.json index 5480eb5..7205071 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,6 @@ "simple-sha1": "^2.0.0" }, "devDependencies": { - "airtap": "0.1.0", "bittorrent-protocol": "^3.0.0", "brfs": "^2.0.0", "standard": "*", @@ -44,9 +43,6 @@ "url": "git://github.com/webtorrent/ut_metadata.git" }, "scripts": { - "test": "standard && npm run test-node && npm run test-browser", - "test-browser": "airtap -- test/*.js", - "test-browser-local": "airtap --local -- test/*.js", - "test-node": "tape test/*.js" + "test": "standard && tape test/*.js" } }