discourse/plugins/chat/test/javascripts/components/thread-settings-test.gjs
Jarek Radosz 893fcf714b
DEV: Remove plugin names from test titles (#39418)
Those are now automatically included in testem's output.
2026-04-21 19:19:52 +02:00

36 lines
1.2 KiB
Text

import { getOwner } from "@ember/owner";
import { render } from "@ember/test-helpers";
import { module, test } from "qunit";
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
import ChatModalThreadSettings from "discourse/plugins/chat/discourse/components/chat/modal/thread-settings";
import ChatFabricators from "discourse/plugins/chat/discourse/lib/fabricators";
module("Component | <ThreadSettings />", function (hooks) {
setupRenderingTest(hooks);
test("discourse-ai - admin", async function (assert) {
this.currentUser.admin = true;
const thread = new ChatFabricators(getOwner(this)).thread();
await render(
<template>
<ChatModalThreadSettings @inline={{true}} @model={{thread}} />
</template>
);
assert.dom(".discourse-ai-cta").exists();
});
test("discourse-ai - not admin", async function (assert) {
this.currentUser.admin = false;
const thread = new ChatFabricators(getOwner(this)).thread();
await render(
<template>
<ChatModalThreadSettings @inline={{true}} @model={{thread}} />
</template>
);
assert.dom(".discourse-ai-cta").doesNotExist();
});
});