summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/entries
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:43:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:43:14 +0000
commit8dd16259287f58f9273002717ec4d27e97127719 (patch)
tree3863e62a53829a84037444beab3abd4ed9dfc7d0 /js/src/tests/test262/built-ins/Array/prototype/entries
parentReleasing progress-linux version 126.0.1-1~progress7.99u1. (diff)
downloadfirefox-8dd16259287f58f9273002717ec4d27e97127719.tar.xz
firefox-8dd16259287f58f9273002717ec4d27e97127719.zip
Merging upstream version 127.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/tests/test262/built-ins/Array/prototype/entries')
-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);