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