fail client tests on warning

This commit is contained in:
Feross Aboukhadijeh 2014-07-10 21:58:19 -07:00
parent 9f64ec67c3
commit 1681474f0e

View File

@ -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')