зеркало из https://github.com/github/fetch.git
Test network failure rejects promise.
This commit is contained in:
Родитель
9bdada53c3
Коммит
ce9abcced4
10
test/test.js
10
test/test.js
|
@ -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()
|
||||
|
|
Загрузка…
Ссылка в новой задаче