summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/entries
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--js/src/tests/test262/built-ins/Array/prototype/entries/length.js14
-rw-r--r--js/src/tests/test262/built-ins/Array/prototype/entries/name.js14
-rw-r--r--js/src/tests/test262/built-ins/Array/prototype/entries/not-a-constructor.js2
3 files changed, 13 insertions, 17 deletions
diff --git a/js/src/tests/test262/built-ins/Array/prototype/entries/length.js b/js/src/tests/test262/built-ins/Array/prototype/entries/length.js
index 28f3093b6b..29b8faf091 100644
--- a/js/src/tests/test262/built-ins/Array/prototype/entries/length.js
+++ b/js/src/tests/test262/built-ins/Array/prototype/entries/length.js
@@ -12,13 +12,11 @@ info: |
includes: [propertyHelper.js]
---*/
-assert.sameValue(
- Array.prototype.entries.length, 0,
- 'The value of `Array.prototype.entries.length` is `0`'
-);
-
-verifyNotEnumerable(Array.prototype.entries, 'length');
-verifyNotWritable(Array.prototype.entries, 'length');
-verifyConfigurable(Array.prototype.entries, 'length');
+verifyProperty(Array.prototype.entries, "length", {
+ value: 0,
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Array/prototype/entries/name.js b/js/src/tests/test262/built-ins/Array/prototype/entries/name.js
index db9cd7a5d2..7ab25d6a45 100644
--- a/js/src/tests/test262/built-ins/Array/prototype/entries/name.js
+++ b/js/src/tests/test262/built-ins/Array/prototype/entries/name.js
@@ -12,13 +12,11 @@ info: |
includes: [propertyHelper.js]
---*/
-assert.sameValue(
- Array.prototype.entries.name, 'entries',
- 'The value of `Array.prototype.entries.name` is `"entries"`'
-);
-
-verifyNotEnumerable(Array.prototype.entries, 'name');
-verifyNotWritable(Array.prototype.entries, 'name');
-verifyConfigurable(Array.prototype.entries, 'name');
+verifyProperty(Array.prototype.entries, "name", {
+ value: "entries",
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Array/prototype/entries/not-a-constructor.js b/js/src/tests/test262/built-ins/Array/prototype/entries/not-a-constructor.js
index 7629f5b507..9149fb8153 100644
--- a/js/src/tests/test262/built-ins/Array/prototype/entries/not-a-constructor.js
+++ b/js/src/tests/test262/built-ins/Array/prototype/entries/not-a-constructor.js
@@ -29,7 +29,7 @@ assert.sameValue(
assert.throws(TypeError, () => {
new Array.prototype.entries();
-}, '`new Array.prototype.entries()` throws TypeError');
+});
reportCompare(0, 0);