diff --git a/test/unit/adapters/http.js b/test/unit/adapters/http.js index a661563..48d8ac9 100644 --- a/test/unit/adapters/http.js +++ b/test/unit/adapters/http.js @@ -243,6 +243,10 @@ module.exports = { test.equal(resp.status, 200); test.equal(resp.statusText, 'OK'); test.done(); + }) + .catch(function (error) { + test.ifError(error); + test.done(); }); }); },