open-consul/ui/packages/consul-ui/tests/integration/helpers/atob-test.js

17 lines
509 B
JavaScript

import { module, test } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import { render } from '@ember/test-helpers';
import hbs from 'htmlbars-inline-precompile';
module('Integration | Helper | atob', function (hooks) {
setupRenderingTest(hooks);
// Replace this with your real tests.
test('it renders', async function (assert) {
this.set('inputValue', 'MTIzNA==');
await render(hbs`{{atob inputValue}}`);
assert.equal(this.element.textContent.trim(), '1234');
});
});