2017-02-07 17:17:31 +01:00
|
|
|
// Copyright (C) 2017 Mozilla Corporation. All rights reserved.
|
|
|
|
// This code is governed by the license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
2017-07-26 23:49:55 +02:00
|
|
|
esid: sec-atomics.wait
|
2017-02-07 17:17:31 +01:00
|
|
|
description: Testing descriptor property of Atomics.wait
|
|
|
|
includes: [propertyHelper.js]
|
2018-03-20 00:51:32 +01:00
|
|
|
features: [Atomics]
|
2017-02-07 17:17:31 +01:00
|
|
|
---*/
|
|
|
|
|
2018-05-17 20:06:22 +02:00
|
|
|
verifyProperty(Atomics, 'wait', {
|
|
|
|
enumerable: false,
|
|
|
|
writable: true,
|
|
|
|
configurable: true,
|
|
|
|
});
|