summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Set/prototype/entries
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Set/prototype/entries')
-rw-r--r--js/src/tests/test262/built-ins/Set/prototype/entries/length.js11
-rw-r--r--js/src/tests/test262/built-ins/Set/prototype/entries/name.js11
-rw-r--r--js/src/tests/test262/built-ins/Set/prototype/entries/not-a-constructor.js2
3 files changed, 13 insertions, 11 deletions
diff --git a/js/src/tests/test262/built-ins/Set/prototype/entries/length.js b/js/src/tests/test262/built-ins/Set/prototype/entries/length.js
index 5f7ab9dd4c..9f3c5a39c5 100644
--- a/js/src/tests/test262/built-ins/Set/prototype/entries/length.js
+++ b/js/src/tests/test262/built-ins/Set/prototype/entries/length.js
@@ -10,10 +10,11 @@ description: >
includes: [propertyHelper.js]
---*/
-assert.sameValue(Set.prototype.entries.length, 0, "The value of `Set.prototype.entries.length` is `0`");
-
-verifyNotEnumerable(Set.prototype.entries, "length");
-verifyNotWritable(Set.prototype.entries, "length");
-verifyConfigurable(Set.prototype.entries, "length");
+verifyProperty(Set.prototype.entries, "length", {
+ value: 0,
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Set/prototype/entries/name.js b/js/src/tests/test262/built-ins/Set/prototype/entries/name.js
index ffcfec6df1..e29b78e96f 100644
--- a/js/src/tests/test262/built-ins/Set/prototype/entries/name.js
+++ b/js/src/tests/test262/built-ins/Set/prototype/entries/name.js
@@ -10,10 +10,11 @@ description: >
includes: [propertyHelper.js]
---*/
-assert.sameValue(Set.prototype.entries.name, "entries", "The value of `Set.prototype.entries.name` is `'entries'`");
-
-verifyNotEnumerable(Set.prototype.entries, "name");
-verifyNotWritable(Set.prototype.entries, "name");
-verifyConfigurable(Set.prototype.entries, "name");
+verifyProperty(Set.prototype.entries, "name", {
+ value: "entries",
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Set/prototype/entries/not-a-constructor.js b/js/src/tests/test262/built-ins/Set/prototype/entries/not-a-constructor.js
index cd385a7077..d2ac4f4845 100644
--- a/js/src/tests/test262/built-ins/Set/prototype/entries/not-a-constructor.js
+++ b/js/src/tests/test262/built-ins/Set/prototype/entries/not-a-constructor.js
@@ -29,7 +29,7 @@ assert.sameValue(
assert.throws(TypeError, () => {
let s = new Set([]); new s.entries();
-}, '`let s = new Set([]); new s.entries()` throws TypeError');
+});
reportCompare(0, 0);