Add some more BigInt.prototype.toLocaleString tests. (#2136)

This commit is contained in:
Ms2ger 2019-05-01 19:05:25 +02:00 committed by Leo Balter
parent 3d4909b0fd
commit 532206a9bd
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,23 @@
// Copyright (C) 2019 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-bigint.prototype.tolocalestring
description: Checks basic behavior for BigInt.prototype.toLocaleString.
locale: [de-DE]
features: [BigInt]
---*/
const tests = [
[0n, undefined, "0"],
[-0n, undefined, "0"],
[88776655n, { "maximumSignificantDigits": 4 }, "88.780.000"],
[88776655n, { "maximumSignificantDigits": 4, "style": "percent" }, "8.878.000.000\u00a0%"],
[88776655n, { "minimumFractionDigits": 3 }, "88.776.655,000"],
[90071992547409910n, undefined, "90.071.992.547.409.910"],
];
for (const [bigint, options, expected] of tests) {
const result = bigint.toLocaleString("de-DE", options);
assert.sameValue(result, expected);
}

View File

@ -14,6 +14,7 @@ const tests = [
[88776655n, { "maximumSignificantDigits": 4 }, "88,780,000"],
[88776655n, { "maximumSignificantDigits": 4, "style": "percent" }, "8,878,000,000%"],
[88776655n, { "minimumFractionDigits": 3 }, "88,776,655.000"],
[90071992547409910n, undefined, "90,071,992,547,409,910"],
];
for (const [bigint, options, expected] of tests) {