Remove flaky test

This test depends on external services and is super flaky. Lets kill it.
This commit is contained in:
Drew
2016-04-20 16:03:56 -07:00
committed by Florent Vilmart
parent 7b91ee98ed
commit b185508508

View File

@@ -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",