Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Math / f16round / length.js
blob8941c0eefb52a9e017c81beb3e28c6fb3d90af00
1 // |reftest| skip -- Float16Array is not supported
2 // Copyright (C) 2024 Kevin Gibbons. All rights reserved.
3 // This code is governed by the BSD license found in the LICENSE file.
5 /*---
6 esid: sec-math.f16round
7 description: >
8   Math.f16round.length is 1
9 features: [Float16Array]
10 includes: [propertyHelper.js]
11 ---*/
13 verifyProperty(Math.f16round, 'length', {
14   value: 1,
15   enumerable: false,
16   writable: false,
17   configurable: true
18 });
20 reportCompare(0, 0);