Files
kredits-web/tests/integration/helpers/fmt-crypto-currency-test.js
T

21 lines
764 B
JavaScript

import { module, test } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import { render } from '@ember/test-helpers';
import { hbs } from 'ember-cli-htmlbars';
module('Integration | Helper | fmt-crypto-currency', function(hooks) {
setupRenderingTest(hooks);
test('it converts Wei to RBTC', async function(assert) {
this.set('balanceRBTC', '500000000000000000');
await render(hbs`{{fmt-crypto-currency balanceRBTC "RBTC"}}`);
assert.equal(this.element.textContent.trim(), '0.5');
});
test('it converts Satoshis to BTC', async function(assert) {
this.set('balanceBTC', '117214976');
await render(hbs`{{fmt-crypto-currency balanceBTC "BTC"}}`);
assert.equal(this.element.textContent.trim(), '1.17214976');
});
});