Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Atomics / sub / name.js
blobe8aa2d3d379470ebb2812f1c3dc93e460d146754
1 // |reftest| skip-if(!this.hasOwnProperty('Atomics')) -- Atomics is not enabled unconditionally
2 // Copyright (C) 2015 AndrĂ© Bargull. All rights reserved.
3 // Copyright (C) 2017 Mozilla Corporation. All rights reserved.
4 // This code is governed by the BSD license found in the LICENSE file.
6 /*---
7 esid: sec-atomics.sub
8 description: >
9   Atomics.sub.name is "sub".
10 includes: [propertyHelper.js]
11 features: [Atomics]
12 ---*/
14 verifyProperty(Atomics.sub, 'name', {
15   value: 'sub',
16   enumerable: false,
17   writable: false,
18   configurable: true,
19 });
22 reportCompare(0, 0);