2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-17 19:21:29 +03:00

Remove usages of isOldIE in tests

This commit is contained in:
Rikki Gibson
2018-07-28 11:04:23 -07:00
committed by Khaled Garbaya
parent 7b6f541e9d
commit 33747ee8fb
2 changed files with 0 additions and 38 deletions
-18
View File
@@ -264,12 +264,6 @@ describe('requests', function () {
});
it('should support binary data as array buffer', function (done) {
// Int8Array doesn't exist in IE8/9
if (isOldIE && typeof Int8Array === 'undefined') {
done();
return;
}
var input = new Int8Array(2);
input[0] = 1;
input[1] = 2;
@@ -286,12 +280,6 @@ describe('requests', function () {
});
it('should support binary data as array buffer view', function (done) {
// Int8Array doesn't exist in IE8/9
if (isOldIE && typeof Int8Array === 'undefined') {
done();
return;
}
var input = new Int8Array(2);
input[0] = 1;
input[1] = 2;
@@ -308,12 +296,6 @@ describe('requests', function () {
});
it('should support array buffer response', function (done) {
// ArrayBuffer doesn't exist in IE8/9
if (isOldIE && typeof ArrayBuffer === 'undefined') {
done();
return;
}
var response;
function str2ab(str) {