Test network failure rejects promise.

This commit is contained in:
David Graham 2014-10-13 15:25:01 -06:00
Родитель 9bdada53c3
Коммит ce9abcced4
1 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -5,6 +5,9 @@ MockXHR.responses = {
'/boom': function(xhr) {
xhr.respond(500, 'boom')
},
'/error': function(xhr) {
xhr.error()
},
'/json': function(xhr) {
xhr.respond(200, JSON.stringify({name: 'Hubot', login: 'hubot'}))
},
@ -61,6 +64,13 @@ asyncTest('resolves promise on 500 error', 2, function() {
})
})
asyncTest('rejects promise for network error', 1, function() {
fetch('/error').catch(function() {
ok(true)
start()
})
})
asyncTest('resolves text promise', 1, function() {
fetch('/hello').then(function(response) {
return response.text()