Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / TypedArray / prototype / some / prop-desc.js
blob41d68a78bc9d2436b1570c90bd549dc0288bf8e2
1 // Copyright (C) 2016 the V8 project authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
3 /*---
4 esid: sec-%typedarray%.prototype.some
5 description: >
6   "some" property of TypedArrayPrototype
7 info: |
8   ES6 section 17: Every other data property described in clauses 18 through 26
9   and in Annex B.2 has the attributes { [[Writable]]: true,
10   [[Enumerable]]: false, [[Configurable]]: true } unless otherwise specified.
11 includes: [propertyHelper.js, testTypedArray.js]
12 features: [TypedArray]
13 ---*/
15 var TypedArrayPrototype = TypedArray.prototype;
17 verifyNotEnumerable(TypedArrayPrototype, 'some');
18 verifyWritable(TypedArrayPrototype, 'some');
19 verifyConfigurable(TypedArrayPrototype, 'some');
21 reportCompare(0, 0);