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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
571 B
JavaScript
Raw Normal View History

import I18n from "I18n";
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")
);
});