mirror of
https://github.com/discourse/discourse.git
synced 2026-08-12 05:55:39 -05:00
DEV: migrate acceptance tests to async await - plugin, reports, user, topic
This commit is contained in:
@@ -2,53 +2,40 @@ import { acceptance } from "helpers/qunit-helpers";
|
||||
|
||||
acceptance("User", { loggedIn: true });
|
||||
|
||||
QUnit.test("Invites", assert => {
|
||||
visit("/u/eviltrout/invited/pending");
|
||||
andThen(() => {
|
||||
assert.ok($("body.user-invites-page").length, "has the body class");
|
||||
});
|
||||
QUnit.test("Invites", async assert => {
|
||||
await visit("/u/eviltrout/invited/pending");
|
||||
assert.ok($("body.user-invites-page").length, "has the body class");
|
||||
});
|
||||
|
||||
QUnit.test("Messages", assert => {
|
||||
visit("/u/eviltrout/messages");
|
||||
andThen(() => {
|
||||
assert.ok($("body.user-messages-page").length, "has the body class");
|
||||
});
|
||||
QUnit.test("Messages", async assert => {
|
||||
await visit("/u/eviltrout/messages");
|
||||
assert.ok($("body.user-messages-page").length, "has the body class");
|
||||
});
|
||||
|
||||
QUnit.test("Notifications", assert => {
|
||||
visit("/u/eviltrout/notifications");
|
||||
andThen(() => {
|
||||
assert.ok($("body.user-notifications-page").length, "has the body class");
|
||||
});
|
||||
QUnit.test("Notifications", async assert => {
|
||||
await visit("/u/eviltrout/notifications");
|
||||
assert.ok($("body.user-notifications-page").length, "has the body class");
|
||||
});
|
||||
|
||||
QUnit.test("Root URL - Viewing Self", assert => {
|
||||
visit("/u/eviltrout");
|
||||
andThen(() => {
|
||||
assert.ok($("body.user-activity-page").length, "has the body class");
|
||||
assert.equal(
|
||||
currentPath(),
|
||||
"user.userActivity.index",
|
||||
"it defaults to activity"
|
||||
);
|
||||
assert.ok(exists(".container.viewing-self"), "has the viewing-self class");
|
||||
});
|
||||
QUnit.test("Root URL - Viewing Self", async assert => {
|
||||
await visit("/u/eviltrout");
|
||||
assert.ok($("body.user-activity-page").length, "has the body class");
|
||||
assert.equal(
|
||||
currentPath(),
|
||||
"user.userActivity.index",
|
||||
"it defaults to activity"
|
||||
);
|
||||
assert.ok(exists(".container.viewing-self"), "has the viewing-self class");
|
||||
});
|
||||
|
||||
QUnit.test("Viewing Summary", assert => {
|
||||
visit("/u/eviltrout/summary");
|
||||
andThen(() => {
|
||||
assert.ok(exists(".replies-section li a"), "replies");
|
||||
assert.ok(exists(".topics-section li a"), "topics");
|
||||
assert.ok(exists(".links-section li a"), "links");
|
||||
assert.ok(exists(".replied-section .user-info"), "liked by");
|
||||
assert.ok(exists(".liked-by-section .user-info"), "liked by");
|
||||
assert.ok(exists(".liked-section .user-info"), "liked");
|
||||
assert.ok(exists(".badges-section .badge-card"), "badges");
|
||||
assert.ok(
|
||||
exists(".top-categories-section .category-link"),
|
||||
"top categories"
|
||||
);
|
||||
});
|
||||
QUnit.test("Viewing Summary", async assert => {
|
||||
await visit("/u/eviltrout/summary");
|
||||
assert.ok(exists(".replies-section li a"), "replies");
|
||||
assert.ok(exists(".topics-section li a"), "topics");
|
||||
assert.ok(exists(".links-section li a"), "links");
|
||||
assert.ok(exists(".replied-section .user-info"), "liked by");
|
||||
assert.ok(exists(".liked-by-section .user-info"), "liked by");
|
||||
assert.ok(exists(".liked-section .user-info"), "liked");
|
||||
assert.ok(exists(".badges-section .badge-card"), "badges");
|
||||
assert.ok(exists(".top-categories-section .category-link"), "top categories");
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user