summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Atomics/Symbol.toStringTag.js
blob: 0e0721c00044d3d7ebdbd85640abf152126b5b93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// |reftest| skip-if(!this.hasOwnProperty('Atomics')) -- Atomics is not enabled unconditionally
// Copyright (C) 2017 Mozilla Corporation.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-atomics-@@tostringtag
description: >
    `Symbol.toStringTag` property descriptor on Atomics
info: |
    The initial value of the @@toStringTag property is the String value
    "Atomics".

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

assert.sameValue(
  Atomics[Symbol.toStringTag],
  'Atomics',
  'The value of Atomics[Symbol.toStringTag] is "Atomics"'
);

verifyNotEnumerable(Atomics, Symbol.toStringTag);
verifyNotWritable(Atomics, Symbol.toStringTag);
verifyConfigurable(Atomics, Symbol.toStringTag);

reportCompare(0, 0);