2015-04-06 14:14:00 -04:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
2014-07-30 13:27:14 -04:00
|
|
|
|
2015-04-21 14:36:46 -04:00
|
|
|
acceptance("User", {loggedIn: true});
|
2014-07-30 13:27:14 -04:00
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
QUnit.test("Invites", assert => {
|
2017-03-28 14:27:54 -04:00
|
|
|
visit("/u/eviltrout/invited/pending");
|
2016-11-10 13:33:31 -05:00
|
|
|
andThen(() => {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok($('body.user-invites-page').length, "has the body class");
|
2016-11-10 13:33:31 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
QUnit.test("Messages", assert => {
|
2017-03-28 14:27:54 -04:00
|
|
|
visit("/u/eviltrout/messages");
|
2016-11-10 13:33:31 -05:00
|
|
|
andThen(() => {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok($('body.user-messages-page').length, "has the body class");
|
2016-11-10 13:33:31 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
QUnit.test("Notifications", assert => {
|
2017-03-28 14:27:54 -04:00
|
|
|
visit("/u/eviltrout/notifications");
|
2016-11-10 13:33:31 -05:00
|
|
|
andThen(() => {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok($('body.user-notifications-page').length, "has the body class");
|
2016-11-10 13:33:31 -05:00
|
|
|
});
|
2016-08-02 13:21:06 -04:00
|
|
|
});
|
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
QUnit.test("Root URL - Viewing Self", assert => {
|
2017-03-28 14:27:54 -04:00
|
|
|
visit("/u/eviltrout");
|
2016-08-02 13:21:06 -04:00
|
|
|
andThen(() => {
|
2017-06-14 13:57:58 -04: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-02 13:21:06 -04:00
|
|
|
});
|
2017-10-13 15:20:42 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
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');
|
|
|
|
});
|
|
|
|
});
|