blob: 1090fba61cfacc30ebff5f997bc7c4a5ea2d7c4d [file] [log] [blame]
// Copyright 2015 Jordan Harband. All rights reserved.
// See LICENSE for details.
/*---
es6id: 25.4.4.3_A1.2_T1
author: Jordan Harband
description: Promise.race property descriptor
info: >
ES6 Section 17
Every other data property described in clauses 18 through 26 and in Annex
B.2 has the attributes { [[Writable]]: true, [[Enumerable]]: false,
[[Configurable]]: true } unless otherwise specified.
includes: [propertyHelper.js]
---*/
verifyNotEnumerable(Promise, 'race');
verifyWritable(Promise, 'race');
verifyConfigurable(Promise, 'race');