47 lines
1.5 KiB
JavaScript
47 lines
1.5 KiB
JavaScript
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("Messages", assert => {
|
|
visit("/u/eviltrout/messages");
|
|
andThen(() => {
|
|
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("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("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');
|
|
});
|
|
});
|