fixup! Add tests for "Intl NumberFormat v3" proposal

This commit is contained in:
Mike Pennisi 2021-10-22 21:11:15 -04:00 committed by Rick Waldron
parent 057c8acec7
commit c0ea82adf1
1 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,39 @@
// Copyright 2021 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-intl.numberformat.prototype.resolvedoptions
description: roundingMode property for the object returned by resolvedOptions()
features: [Intl.NumberFormat-v3]
---*/
var options;
options = new Intl.NumberFormat([], {}).resolvedOptions();
assert.sameValue(options.roundingMode, 'halfExpand (default)');
options = new Intl.NumberFormat([], {roundingMode: 'ceil'}).resolvedOptions();
assert.sameValue(options.roundingMode, 'ceil');
options = new Intl.NumberFormat([], {roundingMode: 'floor'}).resolvedOptions();
assert.sameValue(options.roundingMode, 'floor');
options = new Intl.NumberFormat([], {roundingMode: 'expand'}).resolvedOptions();
assert.sameValue(options.roundingMode, 'expand');
options = new Intl.NumberFormat([], {roundingMode: 'trunc'}).resolvedOptions();
assert.sameValue(options.roundingMode, 'trunc');
options = new Intl.NumberFormat([], {roundingMode: 'halfCeil'}).resolvedOptions();
assert.sameValue(options.roundingMode, 'halfCeil');
options = new Intl.NumberFormat([], {roundingMode: 'halfFloor'}).resolvedOptions();
assert.sameValue(options.roundingMode, 'halfFloor');
options = new Intl.NumberFormat([], {roundingMode: 'halfExpand'}).resolvedOptions();
assert.sameValue(options.roundingMode, 'halfExpand');
options = new Intl.NumberFormat([], {roundingMode: 'halfTrunc'}).resolvedOptions();
assert.sameValue(options.roundingMode, 'halfTrunc');
options = new Intl.NumberFormat([], {roundingMode: 'halfEven'}).resolvedOptions();
assert.sameValue(options.roundingMode, 'halfEven');