mirror of https://github.com/tc39/test262.git
Revert "Intl.NumberFormat + currency will throw an error if maximumFractionDigits is less than currencyDigits"
This reverts commita7b9067fe1
. I fixed the test witha7b9067fe1
based on the current spec, but this test was based on WIP spec change.
This commit is contained in:
parent
e2a4e79a11
commit
3fe45c44c6
|
@ -1,79 +1,21 @@
|
||||||
// Copyright 2017 the V8 project authors. All rights reserved.
|
// Copyright 2017 the V8 project authors. All rights reserved.
|
||||||
// Copyright 2020 Apple Inc. All rights reserved.
|
|
||||||
// This code is governed by the license found in the LICENSE file.
|
// This code is governed by the license found in the LICENSE file.
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
esid: sec-setnfdigitoptions
|
esid: sec-setnfdigitoptions
|
||||||
description: >
|
description: >
|
||||||
When a currency is used in Intl.NumberFormat and minimumFractionDigits is
|
When a currency is used in Intl.NumberFormat and minimumFractionDigits is
|
||||||
not provided, maximumFractionDigits should be set as provided if it is larger
|
not provided, maximumFractionDigits should be set as provided.
|
||||||
than currencyDigits.
|
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
assert.throws(RangeError, () => {
|
|
||||||
new Intl.NumberFormat('en', {
|
|
||||||
style: 'currency',
|
|
||||||
currency: 'USD',
|
|
||||||
maximumFractionDigits: 1
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
assert.sameValue((new Intl.NumberFormat('en', {
|
assert.sameValue((new Intl.NumberFormat('en', {
|
||||||
style: 'currency',
|
style: 'currency',
|
||||||
currency: 'USD',
|
currency: 'USD',
|
||||||
maximumFractionDigits: 2
|
maximumFractionDigits: 1
|
||||||
})).resolvedOptions().maximumFractionDigits, 2);
|
})).resolvedOptions().maximumFractionDigits, 1);
|
||||||
|
|
||||||
assert.sameValue((new Intl.NumberFormat('en', {
|
assert.sameValue((new Intl.NumberFormat('en', {
|
||||||
style: 'currency',
|
style: 'currency',
|
||||||
currency: 'USD',
|
currency: 'CLF',
|
||||||
maximumFractionDigits: 3
|
maximumFractionDigits: 3
|
||||||
})).resolvedOptions().maximumFractionDigits, 3);
|
})).resolvedOptions().maximumSignificantDigits, 3);
|
||||||
|
|
||||||
assert.sameValue((new Intl.NumberFormat('en', {
|
|
||||||
style: 'currency',
|
|
||||||
currency: 'USD',
|
|
||||||
maximumFractionDigits: 20
|
|
||||||
})).resolvedOptions().maximumFractionDigits, 20);
|
|
||||||
|
|
||||||
assert.throws(RangeError, () => {
|
|
||||||
new Intl.NumberFormat('en', {
|
|
||||||
style: 'currency',
|
|
||||||
currency: 'USD',
|
|
||||||
maximumFractionDigits: 21
|
|
||||||
})
|
|
||||||
});
|
|
||||||
|
|
||||||
assert.throws(RangeError, () => {
|
|
||||||
new Intl.NumberFormat('en', {
|
|
||||||
style: 'currency',
|
|
||||||
currency: 'CLF',
|
|
||||||
maximumFractionDigits: 3
|
|
||||||
})
|
|
||||||
});
|
|
||||||
|
|
||||||
assert.sameValue((new Intl.NumberFormat('en', {
|
|
||||||
style: 'currency',
|
|
||||||
currency: 'CLF',
|
|
||||||
maximumFractionDigits: 4
|
|
||||||
})).resolvedOptions().maximumFractionDigits, 4);
|
|
||||||
|
|
||||||
assert.sameValue((new Intl.NumberFormat('en', {
|
|
||||||
style: 'currency',
|
|
||||||
currency: 'CLF',
|
|
||||||
maximumFractionDigits: 5
|
|
||||||
})).resolvedOptions().maximumFractionDigits, 5);
|
|
||||||
|
|
||||||
assert.sameValue((new Intl.NumberFormat('en', {
|
|
||||||
style: 'currency',
|
|
||||||
currency: 'CLF',
|
|
||||||
maximumFractionDigits: 20
|
|
||||||
})).resolvedOptions().maximumFractionDigits, 20);
|
|
||||||
|
|
||||||
assert.throws(RangeError, () => {
|
|
||||||
new Intl.NumberFormat('en', {
|
|
||||||
style: 'currency',
|
|
||||||
currency: 'CLF',
|
|
||||||
maximumFractionDigits: 21
|
|
||||||
})
|
|
||||||
});
|
|
||||||
|
|
Loading…
Reference in New Issue