summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/TypedArray/bug1526838.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--js/src/tests/non262/TypedArray/bug1526838.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/js/src/tests/non262/TypedArray/bug1526838.js b/js/src/tests/non262/TypedArray/bug1526838.js
new file mode 100644
index 0000000000..1d652f7783
--- /dev/null
+++ b/js/src/tests/non262/TypedArray/bug1526838.js
@@ -0,0 +1,8 @@
+const testArray = [1n];
+for (const constructor of anyTypedArrayConstructors) {
+ assertThrowsInstanceOf(() => new constructor(testArray), TypeError);
+ assertThrowsInstanceOf(() => new constructor(testArray.values()), TypeError);
+}
+
+if (typeof reportCompare === "function")
+ reportCompare(true, true);