diff --git a/spec/HTTPRequest.spec.js b/spec/HTTPRequest.spec.js index 4bacd0fe..37a5c48d 100644 --- a/spec/HTTPRequest.spec.js +++ b/spec/HTTPRequest.spec.js @@ -216,17 +216,6 @@ describe("httpRequest", () => { }); }); - it('should get a cat image', (done) => { - httpRequest({ - url: 'http://thecatapi.com/api/images/get?format=src&type=jpg', - followRedirects: true - }).then((res) => { - expect(res.buffer).not.toBe(null); - expect(res.text).not.toBe(null); - done(); - }) - }) - it("should params object to query string", (done) => { httpRequest({ url: httpRequestServer+"/qs",