summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Reflect/Symbol.toStringTag.js
blob: 8a0c5297d32244b242c7a6ef87290b9bd6ddb439 (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) 2020 Jordan Harband. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
    `Symbol.toStringTag` property descriptor
info: |
    The initial value of the @@toStringTag property is the String value
    "Reflect".

    This property has the attributes { [[Writable]]: false, [[Enumerable]]:
    false, [[Configurable]]: true }.
includes: [propertyHelper.js]
features: [Symbol.toStringTag, Reflect]
---*/

verifyProperty(Reflect, Symbol.toStringTag, {
  value: 'Reflect',
  enumerable: false,
  writable: false,
  configurable: true,
});

reportCompare(0, 0);