mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 14:19:49 +08:00
27 lines
633 B
JavaScript
27 lines
633 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Personal Message", {
|
|
loggedIn: true
|
|
});
|
|
|
|
QUnit.test("footer edit button", assert => {
|
|
visit("/t/pm-for-testing/12");
|
|
|
|
andThen(() => {
|
|
assert.ok(!exists('.edit-message'), 'does not show edit first post button on footer by default');
|
|
});
|
|
});
|
|
|
|
acceptance("Personal Message Tagging", {
|
|
loggedIn: true,
|
|
site: { can_tag_pms: true }
|
|
});
|
|
|
|
QUnit.test("show footer edit button", assert => {
|
|
visit("/t/pm-for-testing/12");
|
|
|
|
andThen(() => {
|
|
assert.ok(exists('.edit-message'), 'shows edit first post button on footer when PM tagging is enabled');
|
|
});
|
|
});
|