2015-04-07 02:14:00 +08:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
2018-11-19 17:01:22 +08:00
|
|
|
import DiscourseURL from "discourse/lib/url";
|
2018-05-09 23:27:59 +08:00
|
|
|
|
2015-04-07 02:14:00 +08:00
|
|
|
acceptance("User Card");
|
2014-10-21 00:11:36 +08:00
|
|
|
|
2018-07-19 22:40:12 +08:00
|
|
|
QUnit.test("user card", async assert => {
|
2019-03-25 20:37:17 +08:00
|
|
|
await visit("/t/internationalization-localization/280");
|
2018-06-15 23:03:24 +08:00
|
|
|
assert.ok(invisible("#user-card"), "user card is invisible by default");
|
2014-10-21 00:11:36 +08:00
|
|
|
|
2018-07-19 22:40:12 +08:00
|
|
|
await click("a[data-user-card=eviltrout]:first");
|
|
|
|
assert.ok(visible("#user-card"), "card should appear");
|
2018-11-19 17:01:22 +08:00
|
|
|
|
|
|
|
sandbox.stub(DiscourseURL, "routeTo");
|
2019-03-25 20:37:17 +08:00
|
|
|
await click(".card-content a.user-profile-link");
|
|
|
|
assert.ok(
|
|
|
|
DiscourseURL.routeTo.calledWith("/u/eviltrout"),
|
|
|
|
"it should navigate to the user profile"
|
|
|
|
);
|
2018-04-18 06:52:23 +08:00
|
|
|
});
|