mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 21:57:36 +08:00
48193767bf
Automatically generated by `eslint --fix` to satisfy the updated configuration
22 lines
674 B
JavaScript
22 lines
674 B
JavaScript
import { render } from "@ember/test-helpers";
|
|
import hbs from "htmlbars-inline-precompile";
|
|
import { module, test } from "qunit";
|
|
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
|
import { exists } from "discourse/tests/helpers/qunit-helpers";
|
|
|
|
module("Discourse Chat | Component | chat-emoji-avatar", function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
test("uses an emoji as avatar", async function (assert) {
|
|
this.set("emoji", ":otter:");
|
|
|
|
await render(hbs`<ChatEmojiAvatar @emoji={{this.emoji}} />`);
|
|
|
|
assert.true(
|
|
exists(
|
|
`.chat-emoji-avatar .chat-emoji-avatar-container .emoji[title=otter]`
|
|
)
|
|
);
|
|
});
|
|
});
|