2020-01-09 04:34:58 +01:00
|
|
|
import assert from 'assert'
|
|
|
|
import currencyFormatter from 'currency-formatter'
|
|
|
|
import availableCurrencies from '../../ui/app/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
|
|
|
|
|
2019-12-09 17:39:46 +01:00
|
|
|
availableCurrencies.forEach((conversion) => {
|
|
|
|
const code = conversion.code.toUpperCase()
|
2018-04-03 22:52:01 +02:00
|
|
|
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
|
|
|
|
case 'JPY':
|
|
|
|
assert.equal(result, '¥10,000')
|
|
|
|
break
|
|
|
|
default:
|
|
|
|
assert.ok(result, `Currency ${code} formatted as ${result}`)
|
|
|
|
}
|
2018-04-03 22:52:01 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|