discourse/test/javascripts/acceptance/user-test.js.es6

47 lines
1.5 KiB
Plaintext
Raw Normal View History

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");
andThen(() => {
2017-06-14 13:57:58 -04:00
assert.ok($('body.user-invites-page').length, "has the body class");
});
});
2017-06-14 13:57:58 -04:00
QUnit.test("Messages", assert => {
2017-03-28 14:27:54 -04:00
visit("/u/eviltrout/messages");
andThen(() => {
2017-06-14 13:57:58 -04:00
assert.ok($('body.user-messages-page').length, "has the body class");
});
});
2017-06-14 13:57:58 -04:00
QUnit.test("Notifications", assert => {
2017-03-28 14:27:54 -04:00
visit("/u/eviltrout/notifications");
andThen(() => {
2017-06-14 13:57:58 -04:00
assert.ok($('body.user-notifications-page').length, "has the body class");
});
});
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");
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");
});
});
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');
});
});