lemo-crm/web/tests/integration/helpers/customer-application-images-test.js
2018-03-18 22:15:30 +08:00

18 lines
448 B
JavaScript

import { moduleForComponent, test } from 'ember-qunit';
import hbs from 'htmlbars-inline-precompile';
moduleForComponent('customer-application-images', 'helper:customer-application-images', {
integration: true
});
// Replace this with your real tests.
test('it renders', function(assert) {
this.set('inputValue', '1234');
this.render(hbs`{{customer-application-images inputValue}}`);
assert.equal(this.$().text().trim(), '1234');
});