mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 07:33:37 +08:00
4d6eacac5c
This was primarily an issue on mobile, where after clicking the "Messsage" button in the user card, the composer would load behind the user card overlay.
29 lines
909 B
JavaScript
29 lines
909 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
import DiscourseURL from "discourse/lib/url";
|
|
|
|
acceptance("User Card", { loggedIn: true });
|
|
|
|
QUnit.test("user card", async assert => {
|
|
await visit("/t/internationalization-localization/280");
|
|
assert.ok(invisible("#user-card"), "user card is invisible by default");
|
|
|
|
await click("a[data-user-card=eviltrout]:first");
|
|
assert.ok(visible("#user-card"), "card should appear");
|
|
|
|
sandbox.stub(DiscourseURL, "routeTo");
|
|
await click(".card-content a.user-profile-link");
|
|
assert.ok(
|
|
DiscourseURL.routeTo.calledWith("/u/eviltrout"),
|
|
"it should navigate to the user profile"
|
|
);
|
|
|
|
await click("a[data-user-card=charlie]:first");
|
|
assert.ok(visible("#user-card"), "card should appear");
|
|
|
|
await click(".card-content .compose-pm button");
|
|
assert.ok(
|
|
invisible("#user-card"),
|
|
"user card dismissed after hitting Message button"
|
|
);
|
|
});
|