mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 12:24:37 +08:00
0a5f548635
As part of this move, we are also renaming `discourse-chat` to `chat`.
27 lines
687 B
JavaScript
27 lines
687 B
JavaScript
import componentTest, {
|
|
setupRenderingTest,
|
|
} from "discourse/tests/helpers/component-test";
|
|
import { exists } from "discourse/tests/helpers/qunit-helpers";
|
|
import hbs from "htmlbars-inline-precompile";
|
|
import { module } from "qunit";
|
|
|
|
module("Discourse Chat | Component | chat-emoji-avatar", function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
componentTest("uses an emoji as avatar", {
|
|
template: hbs`{{chat-emoji-avatar emoji=emoji}}`,
|
|
|
|
async beforeEach() {
|
|
this.set("emoji", ":otter:");
|
|
},
|
|
|
|
async test(assert) {
|
|
assert.ok(
|
|
exists(
|
|
`.chat-emoji-avatar .chat-emoji-avatar-container .emoji[title=otter]`
|
|
)
|
|
);
|
|
},
|
|
});
|
|
});
|