mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 06:13:40 +08:00
7b173e883f
Direct messages on mobile will now display the last message in the channels list.
26 lines
869 B
Plaintext
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();
|
|
});
|
|
});
|