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

33 lines
971 B
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");
});
2017-06-14 13:57:58 -04:00
});