mirror of
https://github.com/discourse/discourse.git
synced 2026-08-14 13:58:53 +08:00
25 lines
748 B
JavaScript
Vendored
25 lines
748 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("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");
|
|
});
|
|
});
|