From b1855085089ea9e463b50be053d1a58d0ba0e74b Mon Sep 17 00:00:00 2001 From: Drew Date: Wed, 20 Apr 2016 16:03:56 -0700 Subject: [PATCH] Remove flaky test This test depends on external services and is super flaky. Lets kill it. --- spec/HTTPRequest.spec.js | 11 ----------- 1 file changed, 11 deletions(-) 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",