summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Map/prototype/forEach
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Map/prototype/forEach')
-rw-r--r--js/src/tests/test262/built-ins/Map/prototype/forEach/length.js14
-rw-r--r--js/src/tests/test262/built-ins/Map/prototype/forEach/name.js14
-rw-r--r--js/src/tests/test262/built-ins/Map/prototype/forEach/not-a-constructor.js2
3 files changed, 13 insertions, 17 deletions
diff --git a/js/src/tests/test262/built-ins/Map/prototype/forEach/length.js b/js/src/tests/test262/built-ins/Map/prototype/forEach/length.js
index d0e0c95dc8..18d0cef5fe 100644
--- a/js/src/tests/test262/built-ins/Map/prototype/forEach/length.js
+++ b/js/src/tests/test262/built-ins/Map/prototype/forEach/length.js
@@ -12,13 +12,11 @@ info: |
includes: [propertyHelper.js]
---*/
-assert.sameValue(
- Map.prototype.forEach.length, 1,
- 'The value of `Map.prototype.forEach.length` is `1`'
-);
-
-verifyNotEnumerable(Map.prototype.forEach, 'length');
-verifyNotWritable(Map.prototype.forEach, 'length');
-verifyConfigurable(Map.prototype.forEach, 'length');
+verifyProperty(Map.prototype.forEach, "length", {
+ value: 1,
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Map/prototype/forEach/name.js b/js/src/tests/test262/built-ins/Map/prototype/forEach/name.js
index ea6f8c57fd..26a5e70fb6 100644
--- a/js/src/tests/test262/built-ins/Map/prototype/forEach/name.js
+++ b/js/src/tests/test262/built-ins/Map/prototype/forEach/name.js
@@ -12,13 +12,11 @@ info: |
includes: [propertyHelper.js]
---*/
-assert.sameValue(
- Map.prototype.forEach.name, 'forEach',
- 'The value of `Map.prototype.forEach.name` is `"forEach"`'
-);
-
-verifyNotEnumerable(Map.prototype.forEach, 'name');
-verifyNotWritable(Map.prototype.forEach, 'name');
-verifyConfigurable(Map.prototype.forEach, 'name');
+verifyProperty(Map.prototype.forEach, "name", {
+ value: "forEach",
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Map/prototype/forEach/not-a-constructor.js b/js/src/tests/test262/built-ins/Map/prototype/forEach/not-a-constructor.js
index 0a113f9d68..22b601eb64 100644
--- a/js/src/tests/test262/built-ins/Map/prototype/forEach/not-a-constructor.js
+++ b/js/src/tests/test262/built-ins/Map/prototype/forEach/not-a-constructor.js
@@ -29,7 +29,7 @@ assert.sameValue(
assert.throws(TypeError, () => {
let m = new Map(); new m.forEach();
-}, '`let m = new Map(); new m.forEach()` throws TypeError');
+});
reportCompare(0, 0);