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-31 01:27:14 +08:00
2015-04-22 02:36:46 +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");
andThen(() => {
2017-06-15 01:57:58 +08:00
assert.ok($('body.user-invites-page').length, "has the body class");
});
});
2017-06-15 01:57:58 +08:00
QUnit.test("Messages", assert => {
2017-03-29 02:27:54 +08:00
visit("/u/eviltrout/messages");
andThen(() => {
2017-06-15 01:57:58 +08:00
assert.ok($('body.user-messages-page').length, "has the body class");
});
});
2017-06-15 01:57:58 +08:00
QUnit.test("Notifications", assert => {
2017-03-29 02:27:54 +08:00
visit("/u/eviltrout/notifications");
andThen(() => {
2017-06-15 01:57:58 +08:00
assert.ok($('body.user-notifications-page').length, "has the body class");
});
});
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");
andThen(() => {
2017-06-15 01:57:58 +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");
});
2017-06-15 01:57:58 +08:00
});