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