Files
kredits-web/tests/integration/components/reimbursement-list/component-test.js
T
2020-07-09 17:07:05 +02:00

18 lines
579 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 | Component | reimbursement-list', function(hooks) {
setupRenderingTest(hooks);
test('it renders', async function(assert) {
// Set any properties with this.set('myProperty', 'value');
// Handle any actions with this.set('myAction', function(val) { ... });
await render(hbs`<ReimbursementList />`);
assert.equal(this.element.textContent.trim(), '');
});
});