summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/keys
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Array/prototype/keys')
-rw-r--r--js/src/tests/test262/built-ins/Array/prototype/keys/length.js14
-rw-r--r--js/src/tests/test262/built-ins/Array/prototype/keys/name.js14
-rw-r--r--js/src/tests/test262/built-ins/Array/prototype/keys/not-a-constructor.js2
3 files changed, 13 insertions, 17 deletions
diff --git a/js/src/tests/test262/built-ins/Array/prototype/keys/length.js b/js/src/tests/test262/built-ins/Array/prototype/keys/length.js
index 6d997e5972..160dea0a2d 100644
--- a/js/src/tests/test262/built-ins/Array/prototype/keys/length.js
+++ b/js/src/tests/test262/built-ins/Array/prototype/keys/length.js
@@ -12,13 +12,11 @@ info: |
includes: [propertyHelper.js]
---*/
-assert.sameValue(
- Array.prototype.keys.length, 0,
- 'The value of `Array.prototype.keys.length` is `0`'
-);
-
-verifyNotEnumerable(Array.prototype.keys, 'length');
-verifyNotWritable(Array.prototype.keys, 'length');
-verifyConfigurable(Array.prototype.keys, 'length');
+verifyProperty(Array.prototype.keys, "length", {
+ value: 0,
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Array/prototype/keys/name.js b/js/src/tests/test262/built-ins/Array/prototype/keys/name.js
index 11ea5c508f..c20e6a2b6f 100644
--- a/js/src/tests/test262/built-ins/Array/prototype/keys/name.js
+++ b/js/src/tests/test262/built-ins/Array/prototype/keys/name.js
@@ -12,13 +12,11 @@ info: |
includes: [propertyHelper.js]
---*/
-assert.sameValue(
- Array.prototype.keys.name, 'keys',
- 'The value of `Array.prototype.keys.name` is `"keys"`'
-);
-
-verifyNotEnumerable(Array.prototype.keys, 'name');
-verifyNotWritable(Array.prototype.keys, 'name');
-verifyConfigurable(Array.prototype.keys, 'name');
+verifyProperty(Array.prototype.keys, "name", {
+ value: "keys",
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Array/prototype/keys/not-a-constructor.js b/js/src/tests/test262/built-ins/Array/prototype/keys/not-a-constructor.js
index 8d0b5db966..4207eebb9b 100644
--- a/js/src/tests/test262/built-ins/Array/prototype/keys/not-a-constructor.js
+++ b/js/src/tests/test262/built-ins/Array/prototype/keys/not-a-constructor.js
@@ -25,7 +25,7 @@ assert.sameValue(isConstructor(Array.prototype.keys), false, 'isConstructor(Arra
assert.throws(TypeError, () => {
new Array.prototype.keys();
-}, '`new Array.prototype.keys()` throws TypeError');
+});
reportCompare(0, 0);