Skip to content
Snippets Groups Projects
Commit 338688bb authored by Rick Waldron's avatar Rick Waldron
Browse files

testTypedArray.js: enforce order of TypedArrays

parent ac65ecab
No related branches found
No related tags found
No related merge requests found
...@@ -39,3 +39,22 @@ var callCount = 0; ...@@ -39,3 +39,22 @@ var callCount = 0;
testWithTypedArrayConstructors(() => callCount++); testWithTypedArrayConstructors(() => callCount++);
assert.sameValue(callCount, length); assert.sameValue(callCount, length);
assert.sameValue(typedArrayConstructors[0], Float64Array);
assert.sameValue(typedArrayConstructors[1], Float32Array);
assert.sameValue(typedArrayConstructors[2], Int32Array);
assert.sameValue(typedArrayConstructors[3], Int16Array);
assert.sameValue(typedArrayConstructors[4], Int8Array);
assert.sameValue(typedArrayConstructors[5], Uint32Array);
assert.sameValue(typedArrayConstructors[6], Uint16Array);
assert.sameValue(typedArrayConstructors[7], Uint8Array);
assert.sameValue(typedArrayConstructors[8], Uint8ClampedArray);
assert.sameValue(typedArrayConstructors[0], TAConstructors[0]);
assert.sameValue(typedArrayConstructors[1], TAConstructors[1]);
assert.sameValue(typedArrayConstructors[2], TAConstructors[2]);
assert.sameValue(typedArrayConstructors[3], TAConstructors[3]);
assert.sameValue(typedArrayConstructors[4], TAConstructors[4]);
assert.sameValue(typedArrayConstructors[5], TAConstructors[5]);
assert.sameValue(typedArrayConstructors[6], TAConstructors[6]);
assert.sameValue(typedArrayConstructors[7], TAConstructors[7]);
assert.sameValue(typedArrayConstructors[8], TAConstructors[8]);
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