14 lines
399 B
JavaScript
14 lines
399 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 | add-reimbursement', function(hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
test('it works', async function(assert) {
|
|
await render(hbs`<AddReimbursement />`);
|
|
assert.ok(true);
|
|
});
|
|
});
|