mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-08 04:15:18 +08:00
This was required in older versions of Ember. But now, bare template tags can access `this.`. This commit was created by upgrading lint-configs, and then running `pnpm lint:js:fix && pnpm lint:prettier:fix` Rule development: https://github.com/discourse/lint-configs/pull/154
66 lines
2.1 KiB
Text
66 lines
2.1 KiB
Text
import { getOwner } from "@ember/owner";
|
|
import { render } from "@ember/test-helpers";
|
|
import { module, test } from "qunit";
|
|
import CoreFabricators from "discourse/lib/fabricators";
|
|
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
|
import { i18n } from "discourse-i18n";
|
|
import LeftGutter from "discourse/plugins/chat/discourse/components/chat/message/left-gutter";
|
|
import ChatFabricators from "discourse/plugins/chat/discourse/lib/fabricators";
|
|
|
|
module(
|
|
"Discourse Chat | Component | Chat::Message::LeftGutter",
|
|
function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
test("default", async function (assert) {
|
|
this.message = new ChatFabricators(getOwner(this)).message();
|
|
|
|
await render(
|
|
<template><LeftGutter @message={{this.message}} /></template>
|
|
);
|
|
|
|
assert.dom(".chat-message-left-gutter__date").exists();
|
|
});
|
|
|
|
test("with reviewable", async function (assert) {
|
|
this.message = new ChatFabricators(getOwner(this)).message({
|
|
reviewable_id: 1,
|
|
});
|
|
|
|
await render(
|
|
<template><LeftGutter @message={{this.message}} /></template>
|
|
);
|
|
|
|
assert
|
|
.dom(".chat-message-left-gutter__flag .svg-icon-title")
|
|
.hasAttribute("title", i18n("chat.flagged"));
|
|
});
|
|
|
|
test("with flag status", async function (assert) {
|
|
this.message = new ChatFabricators(getOwner(this)).message({
|
|
user_flag_status: 0,
|
|
});
|
|
|
|
await render(
|
|
<template><LeftGutter @message={{this.message}} /></template>
|
|
);
|
|
|
|
assert
|
|
.dom(".chat-message-left-gutter__flag .svg-icon-title")
|
|
.hasAttribute("title", i18n("chat.you_flagged"));
|
|
});
|
|
|
|
test("bookmark", async function (assert) {
|
|
this.message = new ChatFabricators(getOwner(this)).message({
|
|
bookmark: new CoreFabricators(getOwner(this)).bookmark(),
|
|
});
|
|
|
|
await render(
|
|
<template><LeftGutter @message={{this.message}} /></template>
|
|
);
|
|
|
|
assert.dom(".chat-message-left-gutter__date").exists();
|
|
assert.dom(".chat-message-left-gutter__bookmark").exists();
|
|
});
|
|
}
|
|
);
|