discourse/test/javascripts/acceptance/personal-message-test.js

Failed to ignore revisions in .git-blame-ignore-revs.

40 lines
869 B
JavaScript
Raw Normal View History

2018-02-27 05:14:34 -05:00
import { acceptance } from "helpers/qunit-helpers";
acceptance("Personal Message", {
loggedIn: true
});
QUnit.test("footer edit button", async assert => {
await visit("/t/pm-for-testing/12");
2018-02-27 05:14:34 -05:00
assert.ok(
!exists(".edit-message"),
"does not show edit first post button on footer by default"
);
2018-02-27 05:14:34 -05:00
});
QUnit.test("suggested messages", async assert => {
await visit("/t/pm-for-testing/12");
assert.equal(
find("#suggested-topics .suggested-topics-title")
.text()
.trim(),
I18n.t("suggested_topics.pm_title")
);
});
2018-02-27 05:14:34 -05:00
acceptance("Personal Message Tagging", {
loggedIn: true,
site: { can_tag_pms: true }
});
QUnit.test("show footer edit button", async assert => {
await visit("/t/pm-for-testing/12");
2018-02-27 05:14:34 -05:00
assert.ok(
exists(".edit-message"),
"shows edit first post button on footer when PM tagging is enabled"
);
2018-02-27 05:14:34 -05:00
});