mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 06:15:28 +08:00
29 lines
589 B
JavaScript
29 lines
589 B
JavaScript
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, '<i class="fa fa-bars d-icon d-icon-bars"></i>');
|
|
}
|
|
});
|
|
|
|
componentTest("with replacement", {
|
|
template: '{{d-icon "d-watching"}}',
|
|
|
|
test(assert) {
|
|
const html = this.$()
|
|
.html()
|
|
.trim();
|
|
assert.equal(
|
|
html,
|
|
'<i class="fa fa-exclamation-circle d-icon d-icon-d-watching"></i>'
|
|
);
|
|
}
|
|
});
|