0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-12 05:37:26 +08:00
discourse/plugins/discourse-reactions/test/javascripts/acceptance/discourse-reactions-disabled-test.js
2025-11-26 16:10:02 -03:00

25 lines
770 B
JavaScript
Vendored

import { visit } from "@ember/test-helpers";
import { test } from "qunit";
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
import ReactionsTopics from "../fixtures/reactions-topic-fixtures";
acceptance(`Discourse Reactions - Disabled`, function (needs) {
needs.user();
needs.settings({
discourse_reactions_enabled: false,
});
needs.pretender((server, helper) => {
const topicPath = "/t/374.json";
server.get(topicPath, () => helper.response(ReactionsTopics[topicPath]));
});
test("Does not show reactions controls", async function (assert) {
await visit("/t/topic_with_reactions_and_likes/374");
assert
.dom(".discourse-reactions-actions")
.doesNotExist("reactions controls are not shown");
});
});