summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/flatMap/name.js
blob: 991c171e7829f6f13e21654de81c61c91a7a6a32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2018 Shilpi Jain and Michael Ficarra. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-array.prototype.flatmap
description: Array.prototype.flatmap name value and descriptor.
info: >
  17 ECMAScript Standard Built-in Objects
includes: [propertyHelper.js]
features: [Array.prototype.flatMap]
---*/

assert.sameValue(
  Array.prototype.flatMap.name, 'flatMap',
  'The value of `Array.prototype.flatMap.name` is `"flatMap"`'
);

verifyProperty(Array.prototype.flatMap, 'name', {
  enumerable: false,
  writable: false,
  configurable: true,
});

reportCompare(0, 0);