mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 10:44:50 +08:00
c65cdc0779
This is unnecessary indirection, we can just have the chat_channel_id in the message serializer and use that.
17 lines
640 B
JavaScript
17 lines
640 B
JavaScript
import { module, test } from "qunit";
|
|
import hbs from "htmlbars-inline-precompile";
|
|
import { render } from "@ember/test-helpers";
|
|
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
|
import { query } from "discourse/tests/helpers/qunit-helpers";
|
|
|
|
module("Discourse Chat | Unit | Helpers | format-chat-date", function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
test("link to chat message", async function (assert) {
|
|
this.set("message", { id: 1, chat_channel_id: 1 });
|
|
await render(hbs`{{format-chat-date this.message}}`);
|
|
|
|
assert.equal(query(".chat-time").getAttribute("href"), "/chat/c/-/1/1");
|
|
});
|
|
});
|