2021-05-07 21:38:24 +02:00
|
|
|
import { strict as assert } from 'assert';
|
2021-02-04 19:15:23 +01:00
|
|
|
import currencyFormatter from 'currency-formatter';
|
2021-04-28 21:53:59 +02:00
|
|
|
import availableCurrencies from '../../ui/helpers/constants/available-conversions.json';
|
2018-04-03 22:52:01 +02:00
|
|
|
|
2018-04-03 23:03:56 +02:00
|
|
|
describe('currencyFormatting', function () {
|
2018-04-03 22:52:01 +02:00
|
|
|
it('be able to format any infura currency', function (done) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const number = 10000;
|
2018-04-03 22:52:01 +02:00
|
|
|
|
2019-12-09 17:39:46 +01:00
|
|
|
availableCurrencies.forEach((conversion) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const code = conversion.code.toUpperCase();
|
|
|
|
const result = currencyFormatter.format(number, { code });
|
2018-04-03 23:03:56 +02:00
|
|
|
|
|
|
|
switch (code) {
|
|
|
|
case 'USD':
|
2021-02-04 19:15:23 +01:00
|
|
|
assert.equal(result, '$10,000.00');
|
|
|
|
break;
|
2018-04-03 23:03:56 +02:00
|
|
|
case 'JPY':
|
2021-02-04 19:15:23 +01:00
|
|
|
assert.equal(result, '¥10,000');
|
|
|
|
break;
|
2018-04-03 23:03:56 +02:00
|
|
|
default:
|
2021-02-04 19:15:23 +01:00
|
|
|
assert.ok(result, `Currency ${code} formatted as ${result}`);
|
2018-04-03 23:03:56 +02:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2018-04-03 22:52:01 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|