mirror of
https://github.com/discourse/discourse.git
synced 2026-08-10 04:58:31 -05:00
This reverts commit 10e1831139.
This commit is contained in:
@@ -1,24 +0,0 @@
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import hbs from "htmlbars-inline-precompile";
|
||||
import I18n from "I18n";
|
||||
import { module, test } from "qunit";
|
||||
import { render } from "@ember/test-helpers";
|
||||
|
||||
module(
|
||||
"Discourse Chat | Component | chat-message-separator-new",
|
||||
function (hooks) {
|
||||
setupRenderingTest(hooks);
|
||||
|
||||
test("newest message", async function (assert) {
|
||||
this.set("message", { newest: true });
|
||||
|
||||
await render(hbs`<ChatMessageSeparatorNew @message={{this.message}} />`);
|
||||
|
||||
assert.strictEqual(
|
||||
query(".chat-message-separator-new").innerText.trim(),
|
||||
I18n.t("chat.last_visit")
|
||||
);
|
||||
});
|
||||
}
|
||||
);
|
||||
Reference in New Issue
Block a user