1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/test/unit-global/balance-formatter.test.js

28 lines
801 B
JavaScript
Raw Normal View History

import { strict as assert } from 'assert';
import currencyFormatter from 'currency-formatter';
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) {
const number = 10000;
2018-04-03 22:52:01 +02:00
availableCurrencies.forEach((conversion) => {
const code = conversion.code.toUpperCase();
const result = currencyFormatter.format(number, { code });
2018-04-03 23:03:56 +02:00
switch (code) {
case 'USD':
assert.equal(result, '$10,000.00');
break;
2018-04-03 23:03:56 +02:00
case 'JPY':
assert.equal(result, '¥10,000');
break;
2018-04-03 23:03:56 +02:00
default:
assert.ok(result, `Currency ${code} formatted as ${result}`);
2018-04-03 23:03:56 +02:00
}
});
2018-04-03 22:52:01 +02:00
done();
});
});