mirror of
https://github.com/webtorrent/bittorrent-tracker.git
synced 2024-12-13 19:06:27 +00:00
fail client tests on warning
This commit is contained in:
parent
9f64ec67c3
commit
1681474f0e
@ -45,6 +45,10 @@ test('http: client.start()', function (t) {
|
||||
t.error(err)
|
||||
})
|
||||
|
||||
client.on('warning', function (err) {
|
||||
t.error(err)
|
||||
})
|
||||
|
||||
client.once('update', function (data) {
|
||||
t.equal(data.announce, announceUrl)
|
||||
t.equal(typeof data.complete, 'number')
|
||||
@ -76,6 +80,10 @@ test('http: client.stop()', function (t) {
|
||||
t.error(err)
|
||||
})
|
||||
|
||||
client.on('warning', function (err) {
|
||||
t.error(err)
|
||||
})
|
||||
|
||||
client.start()
|
||||
|
||||
setTimeout(function () {
|
||||
@ -106,6 +114,10 @@ test('http: client.update()', function (t) {
|
||||
t.error(err)
|
||||
})
|
||||
|
||||
client.on('warning', function (err) {
|
||||
t.error(err)
|
||||
})
|
||||
|
||||
client.start()
|
||||
|
||||
client.once('update', function () {
|
||||
@ -137,6 +149,10 @@ test('http: client.scrape()', function (t) {
|
||||
t.error(err)
|
||||
})
|
||||
|
||||
client.on('warning', function (err) {
|
||||
t.error(err)
|
||||
})
|
||||
|
||||
client.once('scrape', function (data) {
|
||||
t.equal(data.announce, announceUrl)
|
||||
t.equal(typeof data.complete, 'number')
|
||||
|
Loading…
Reference in New Issue
Block a user