import componentTest from "helpers/component-test";
moduleForComponent("d-icon", { integration: true });
componentTest("default", {
template: '{{d-icon "bars"}}',
test(assert) {
const html = this.$()
.html()
.trim();
assert.equal(
html,
''
);
}
});
componentTest("with replacement", {
template: '{{d-icon "d-watching"}}',
test(assert) {
const html = this.$()
.html()
.trim();
assert.equal(
html,
''
);
}
});