2015-04-07 02:14:00 +08:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
2014-07-31 01:27:14 +08:00
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
acceptance("User", { loggedIn: true });
|
2014-07-31 01:27:14 +08:00
|
|
|
|
2017-06-15 01:57:58 +08:00
|
|
|
QUnit.test("Invites", assert => {
|
2017-03-29 02:27:54 +08:00
|
|
|
visit("/u/eviltrout/invited/pending");
|
2016-11-11 02:33:31 +08:00
|
|
|
andThen(() => {
|
2018-06-15 23:03:24 +08:00
|
|
|
assert.ok($("body.user-invites-page").length, "has the body class");
|
2016-11-11 02:33:31 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-06-15 01:57:58 +08:00
|
|
|
QUnit.test("Messages", assert => {
|
2017-03-29 02:27:54 +08:00
|
|
|
visit("/u/eviltrout/messages");
|
2016-11-11 02:33:31 +08:00
|
|
|
andThen(() => {
|
2018-06-15 23:03:24 +08:00
|
|
|
assert.ok($("body.user-messages-page").length, "has the body class");
|
2016-11-11 02:33:31 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-06-15 01:57:58 +08:00
|
|
|
QUnit.test("Notifications", assert => {
|
2017-03-29 02:27:54 +08:00
|
|
|
visit("/u/eviltrout/notifications");
|
2016-11-11 02:33:31 +08:00
|
|
|
andThen(() => {
|
2018-06-15 23:03:24 +08:00
|
|
|
assert.ok($("body.user-notifications-page").length, "has the body class");
|
2016-11-11 02:33:31 +08:00
|
|
|
});
|
2016-08-03 01:21:06 +08:00
|
|
|
});
|
|
|
|
|
2017-06-15 01:57:58 +08:00
|
|
|
QUnit.test("Root URL - Viewing Self", assert => {
|
2017-03-29 02:27:54 +08:00
|
|
|
visit("/u/eviltrout");
|
2016-08-03 01:21:06 +08:00
|
|
|
andThen(() => {
|
2018-06-15 23:03:24 +08:00
|
|
|
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");
|
2016-08-03 01:21:06 +08:00
|
|
|
});
|
2017-10-14 03:20:42 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
QUnit.test("Viewing Summary", assert => {
|
|
|
|
visit("/u/eviltrout/summary");
|
|
|
|
andThen(() => {
|
2018-06-15 23:03:24 +08:00
|
|
|
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");
|
2018-07-19 04:37:50 +08:00
|
|
|
assert.ok(
|
|
|
|
exists(".top-categories-section .category-link"),
|
|
|
|
"top categories"
|
|
|
|
);
|
2017-10-14 03:20:42 +08:00
|
|
|
});
|
|
|
|
});
|