chore: fix test and generate pkg-lock
This commit is contained in:
parent
ea803894ae
commit
f601d59d77
1 changed files with 2 additions and 5 deletions
|
|
@ -293,11 +293,8 @@ Please specify .groupSeparator / .decimalSeparator on the formatOptions object t
|
|||
expect(formatNumber(123456.789, currencyCode('USD'))).to.equal('USD 123,456.79');
|
||||
expect(formatNumber(123456.789, currencyCode('JPY'))).to.equal('JPY 123,457');
|
||||
expect(formatNumber(123456.789, currencySymbol('EUR'))).to.equal('€123,456.79');
|
||||
if (!isSafari) {
|
||||
// TODO: if inconsistency remains, write normalize fn for en-PH
|
||||
expect(formatNumber(123456.789, currencySymbol('USD'))).to.equal('$123,456.79');
|
||||
expect(formatNumber(123456.789, currencySymbol('JPY'))).to.equal('¥123,457');
|
||||
}
|
||||
expect(formatNumber(123456.789, currencySymbol('USD'))).to.equal('$123,456.79');
|
||||
expect(formatNumber(123456.789, currencySymbol('JPY'))).to.equal('¥123,457');
|
||||
});
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue