discourse/plugins/chat/test/javascripts/components/chat-retention-reminder-test.gjs
David Taylor 9322a46fa4
DEV: Remove unneeded const self = this; from qunit tests (#35632)
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
2025-10-27 18:07:22 +00:00

45 lines
1.5 KiB
Text
Vendored

import { render } from "@ember/test-helpers";
import { module, test } from "qunit";
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
import { i18n } from "discourse-i18n";
import ChatRetentionReminder from "discourse/plugins/chat/discourse/components/chat-retention-reminder";
import ChatChannel from "discourse/plugins/chat/discourse/models/chat-channel";
module(
"Discourse Chat | Component | chat-retention-reminder",
function (hooks) {
setupRenderingTest(hooks);
test("display retention info", async function (assert) {
this.channel = ChatChannel.create({ chatable_type: "Category" });
this.currentUser.set("needs_channel_retention_reminder", true);
await render(
<template><ChatRetentionReminder @channel={{this.channel}} /></template>
);
assert.dom(".chat-retention-reminder").includesText(
i18n("chat.retention_reminders.long", {
count: this.siteSettings.chat_channel_retention_days,
})
);
});
test("@type=short", async function (assert) {
this.channel = ChatChannel.create({ chatable_type: "Category" });
this.currentUser.set("needs_channel_retention_reminder", true);
await render(
<template>
<ChatRetentionReminder @channel={{this.channel}} @type="short" />
</template>
);
assert.dom(".chat-retention-reminder").includesText(
i18n("chat.retention_reminders.short", {
count: this.siteSettings.chat_channel_retention_days,
})
);
});
}
);