Files
inspektor/tests/integration/components/item-icon/component-test.js
2017-11-09 00:48:59 +01:00

13 lines
366 B
JavaScript

import { moduleForComponent, test } from 'ember-qunit';
import hbs from 'htmlbars-inline-precompile';
moduleForComponent('item-icon', 'Integration | Component | item icon', {
integration: true
});
test('it renders', function(assert) {
this.render(hbs`{{item-icon type='folder'}}`);
assert.equal(this.$('img').attr('src'), '/img/file-icons/folder.svg');
});