open-consul/ui-v2/tests/integration/helpers/last-test.js

18 lines
482 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('helper:last', function(hooks) {
setupRenderingTest(hooks);
// Replace this with your real tests.
test('it renders', async function(assert) {
this.set('inputValue', 'get-the-last-character/');
await render(hbs`{{last inputValue}}`);
assert.dom('*').hasText('/');
});
});