mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 07:53:49 +08:00
Revert "DEV: rework the chat-live-pane" (#20510)
This reverts commit 67c0498f6475f56472308d25441ea2a817dd1891.
This commit is contained in:
@ -7,6 +7,14 @@ import { module, test } from "qunit";
|
||||
module("Discourse Chat | Component | chat-message-reaction", function (hooks) {
|
||||
setupRenderingTest(hooks);
|
||||
|
||||
test("accepts arbitrary class property", async function (assert) {
|
||||
await render(hbs`
|
||||
<ChatMessageReaction @reaction={{hash emoji="heart"}} @class="foo" />
|
||||
`);
|
||||
|
||||
assert.true(exists(".chat-message-reaction.foo"));
|
||||
});
|
||||
|
||||
test("adds reacted class when user reacted", async function (assert) {
|
||||
await render(hbs`
|
||||
<ChatMessageReaction @reaction={{hash emoji="heart" reacted=true}} />
|
||||
@ -21,6 +29,19 @@ module("Discourse Chat | Component | chat-message-reaction", function (hooks) {
|
||||
assert.true(exists(`.chat-message-reaction[data-emoji-name="heart"]`));
|
||||
});
|
||||
|
||||
test("adds show class when count is positive", async function (assert) {
|
||||
this.set("count", 0);
|
||||
|
||||
await render(hbs`
|
||||
<ChatMessageReaction @reaction={{hash emoji="heart" count=this.count}} />
|
||||
`);
|
||||
|
||||
assert.false(exists(".chat-message-reaction.show"));
|
||||
|
||||
this.set("count", 1);
|
||||
assert.true(exists(".chat-message-reaction.show"));
|
||||
});
|
||||
|
||||
test("title/alt attributes", async function (assert) {
|
||||
await render(hbs`<ChatMessageReaction @reaction={{hash emoji="heart"}} />`);
|
||||
|
||||
|
Reference in New Issue
Block a user