Better pretty printing for typed arrays
This commit is contained in:
committed by
Gregg Van Hove
parent
acc8c23bf4
commit
4fc177d5ae
20
spec/helpers/checkForTypedArrays.js
Normal file
20
spec/helpers/checkForTypedArrays.js
Normal file
@@ -0,0 +1,20 @@
|
||||
(function(env) {
|
||||
function hasFunctioningTypedArrays() {
|
||||
if (typeof Uint32Array === 'undefined') { return false; }
|
||||
|
||||
try {
|
||||
var a = new Uint32Array([1, 2, 3]);
|
||||
if (a.length !== 3) { return false; }
|
||||
return true;
|
||||
} catch(e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
env.requireFunctioningTypedArrays = function() {
|
||||
if (!hasFunctioningTypedArrays()) {
|
||||
env.pending("Browser has incomplete or missing support for typed arrays");
|
||||
}
|
||||
};
|
||||
|
||||
})(jasmine.getEnv());
|
||||
Reference in New Issue
Block a user