bittorrent-tracker/test
Feross Aboukhadijeh 40202a00b7 BREAKING: change how the filter function works
It's non-standard for a callback function to take a non-error argument
in the first position.

So instead of the filter callback accepting three types of arguments:

cb(true) // allowed
cb(false) // disallowed
cb(new Error('custom message')) // disallowed with custom message

It now accepts two forms:

cb(new Error('custom message')) // disallowed with custom message
cb(null) // allowed
2017-03-01 22:54:40 -08:00
..
client-large-torrent.js Use safe-buffer 2016-05-29 23:12:23 -07:00
client-magnet.js Use safe-buffer 2016-05-29 23:12:23 -07:00
client-ws-socket-pool.js Use safe-buffer 2016-05-29 23:12:23 -07:00
client.js test: add failing test for the second part of #190 2017-01-20 18:34:05 -08:00
common.js test: add test for ws tracker for filter tests 2016-02-29 17:39:03 -08:00
destroy.js add test: no "update" events after destroy() 2016-09-16 07:49:49 -07:00
evict.js add failing tests for desired evicition behavior 2017-02-08 13:12:39 -08:00
filter.js BREAKING: change how the filter function works 2017-03-01 22:54:40 -08:00
querystring.js Use safe-buffer 2016-05-29 23:12:23 -07:00
scrape.js Run all tests 2016-08-05 18:41:25 -07:00
server.js test: server: check that all clients, server are destroyed 2017-02-08 13:11:48 -08:00
stats.js Fix webtorrent version parsing 2016-07-29 18:18:32 -07:00