discourse/plugins/chat/test/javascripts/components/channel-title-test.gjs
Joffrey JAFFEUX 7b173e883f
FEATURE: display last message on mobile (#25384)
Direct messages on mobile will now display the last message in the channels list.
2024-01-25 15:30:21 +01:00

26 lines
869 B
Plaintext

import { render } from "@ember/test-helpers";
import { module, test } from "qunit";
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
import ChannelTitle from "discourse/plugins/chat/discourse/components/channel-title";
import fabricators from "discourse/plugins/chat/discourse/lib/fabricators";
module("Discourse Chat | Component | <ChannelTitle />", function (hooks) {
setupRenderingTest(hooks);
test("icon", async function (assert) {
const channel = fabricators.channel();
await render(<template><ChannelTitle @channel={{channel}} /></template>);
assert.dom(".chat-channel-icon").exists();
});
test("label", async function (assert) {
const channel = fabricators.channel();
await render(<template><ChannelTitle @channel={{channel}} /></template>);
assert.dom(".chat-channel-name").exists();
});
});