2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-11 18:02:32 +03:00

Fixing sporadically failing tests

This commit is contained in:
Nick Uraltsev
2016-10-29 21:58:06 -07:00
parent 417913bf8b
commit 46a9639ef2
6 changed files with 18 additions and 18 deletions
+2 -2
View File
@@ -32,12 +32,12 @@ describe('transform', function () {
status: 200,
responseText: '{"foo": "bar"}'
});
setTimeout(function () {
expect(typeof response.data).toEqual('object');
expect(response.data.foo).toEqual('bar');
done();
});
}, 100);
});
});