Skip to content
Snippets Groups Projects
Commit d033b160 authored by Leonardo Balter's avatar Leonardo Balter
Browse files

fixup! Add tests for TypedArrays constructors

parent 7a8120fb
No related branches found
No related tags found
No related merge requests found
......@@ -17,16 +17,28 @@ features: [Symbol]
---*/
var obj = {
"0": null,
"2": 42,
"3": "7",
"4": Symbol("1"),
length: 4
"4": NaN,
"5": Symbol("1"),
length: 5
};
testWithTypedArrayConstructors(function(TA) {
var typedArray = new TA(obj);
assert.sameValue(typedArray.length, 4);
assert.sameValue(typedArray[0], 0);
assert.sameValue(typedArray[2], 42);
assert.sameValue(typedArray[3], 7);
assert.sameValue(typedArray[5], undefined);
assert.sameValue(Object.getPrototypeOf(typedArray), TA.prototype);
if (TA === Float32Array || TA === Float64Array) {
assert.sameValue(typedArray[1], NaN);
assert.sameValue(typedArray[4], NaN);
} else {
assert.sameValue(typedArray[1], 0);
assert.sameValue(typedArray[4], 0);
}
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment