import { setupRenderingTest } from "discourse/tests/helpers/component-test"; import { exists } from "discourse/tests/helpers/qunit-helpers"; import hbs from "htmlbars-inline-precompile"; import fabricators from "../helpers/fabricators"; import { module, test } from "qunit"; import { render } from "@ember/test-helpers"; module("Discourse Chat | Component | chat-channel-metadata", function (hooks) { setupRenderingTest(hooks); test("displays last message sent at", async function (assert) { const lastMessageSentAt = moment(); this.channel = fabricators.directMessageChatChannel({ last_message_sent_at: lastMessageSentAt, }); await render(hbs``); assert .dom(".chat-channel-metadata__date") .hasText(lastMessageSentAt.format("LT")); }); test("unreadIndicator", async function (assert) { this.channel = fabricators.directMessageChatChannel(); this.currentUser.set("chat_channel_tracking_state", { [this.channel.id]: { unread_count: 1 }, }); this.unreadIndicator = true; await render( hbs`` ); assert.ok(exists(".chat-channel-unread-indicator")); this.unreadIndicator = false; await render( hbs`` ); assert.notOk(exists(".chat-channel-unread-indicator")); }); });