Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Atomics / sub / descriptor.js
blob72e0241b8818dcaa9dee9e91337d270eb1cf95cb
1 // |reftest| skip-if(!this.hasOwnProperty('Atomics')) -- Atomics is not enabled unconditionally
2 // Copyright (C) 2017 Mozilla Corporation. All rights reserved.
3 // This code is governed by the license found in the LICENSE file.
5 /*---
6 esid: sec-atomics.sub
7 description: Testing descriptor property of Atomics.sub
8 includes: [propertyHelper.js]
9 features: [Atomics]
10 ---*/
12 verifyProperty(Atomics, 'sub', {
13   enumerable: false,
14   writable: true,
15   configurable: true,
16 });
18 reportCompare(0, 0);