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/test
AgeCommit message (Collapse)Author
2015-06-11add failing test for #348Feross Aboukhadijeh
2015-06-11add test for issue #349Feross Aboukhadijeh
2015-06-11test styleFeross Aboukhadijeh
2015-05-29moved remote torrent handling into parse-torrent@5.1Feross Aboukhadijeh
2015-05-28test: add test for client.add with string announce propFeross Aboukhadijeh
2015-05-18add test: remove by Torrent objectFeross Aboukhadijeh
2015-05-12fixes for parse-torrent@5Feross Aboukhadijeh
Fixes https://github.com/feross/parse-torrent/issues/9
2015-05-03When no trackers specified, use some reasonable defaultsFeross Aboukhadijeh
2015-05-03consistent test name formattingFeross Aboukhadijeh
2015-05-03split up testsFeross Aboukhadijeh
2015-04-11fix tests to work with new bittorrent-dhtFeross Aboukhadijeh
2015-04-11Breaking: rename "blocked-peer" event to "blockedPeer"Feross Aboukhadijeh
2015-03-20test: add tests for client.removeFeross Aboukhadijeh
For #287
2015-03-07styleFeross Aboukhadijeh
2015-03-04bittorrent-dht@3Feross Aboukhadijeh
2015-03-01bittorrent-tracker@3Feross Aboukhadijeh
2015-02-08remove portfinder depFeross Aboukhadijeh
2015-01-29more style fixesFeross Aboukhadijeh
2015-01-27styleFeross Aboukhadijeh
2015-01-27JavaScript Standard StyleFeross Aboukhadijeh
2015-01-26fix test failure because of new tracker in create-torrentFeross Aboukhadijeh
2015-01-26after client.destroy(), no "ready" event emittedFeross Aboukhadijeh
2015-01-26fix unexpected 'torrent' event in browserFeross Aboukhadijeh
2015-01-26after client.destroy(), no "torrent" event should be emittedFeross Aboukhadijeh
Fixes #254
2015-01-26throw if add or seed after destroyFeross Aboukhadijeh
For #254
2015-01-12command line: add `seed` commandFeross Aboukhadijeh
Fixes #231
2015-01-11command line: add `create` commandFeross Aboukhadijeh
Fixes #232
2015-01-10command line: add `info` commandFeross Aboukhadijeh
Fix #233
2015-01-04test: verify file content in download testsFeross Aboukhadijeh
2015-01-04add blacklist.txt.gz file for testsFeross Aboukhadijeh
2015-01-04add blocklist testsFeross Aboukhadijeh
2015-01-04Add test: blocklist blocks peers discovered via DHTFeross Aboukhadijeh
For #87
2015-01-04Add DHT magnet uri test, udp tracker magnet uri testFeross Aboukhadijeh
2014-12-31test that blocklist blocks connections to peersFeross Aboukhadijeh
2014-12-31Use 'WebTorrent' user-agent for http requestsFeross Aboukhadijeh
Fixes #229
2014-12-30add `torrent.magnetURI` getter functionFeross Aboukhadijeh
Depends on https://github.com/feross/parse-torrent/pull/8
2014-12-17remove hack from testsFeross Aboukhadijeh
2014-12-17add client.seed test for path to folder (string)Feross Aboukhadijeh
2014-12-17hack: set name on blob to fix test exceptionFeross Aboukhadijeh
2014-12-17use correct tracker option `tracker`; not `trackers`Feross Aboukhadijeh
2014-12-17add client.seed tests (buffer, blob, path to file)Feross Aboukhadijeh
2014-10-22Add failing test for programmatic torrent http serverFeross Aboukhadijeh
2014-10-22`client.seed` streams into storageFeross Aboukhadijeh
2014-10-22clean up testsFeross Aboukhadijeh
2014-10-06move node-only tests out of basic.jsFeross Aboukhadijeh
2014-09-29test additional torrent types for client.addFeross Aboukhadijeh
2014-09-21add test/basic.js backFeross Aboukhadijeh
2014-09-21merge `bittorrent-client` into this moduleFeross Aboukhadijeh
When I started the WebTorrent project I thought there were going to need to be two separate client implementations (bittorrent-client and webtorrent-client) that would get tied together in a higher-level module. Fortunately, this was not necessary because of the awesome “browser” field support in browserify. By substituting just a few modules, we can make the same module (webtorrent) work in node AND the browser, with the same codebase! So, from now on, you can just `require(‘webtorrent’)` in node or the browser, and it will just work. You can also `npm install webtorrent` if you want to use bittorrent in a node app or script. Lastly, you can `npm install webtorrent -g` if you want to use webtorrent as a command line app (it installs a `webtorrent` command).
2014-09-17command line: add test for -v --version flagsFeross Aboukhadijeh
for #94
2014-07-29fix command line testFeross Aboukhadijeh