mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 20:47:07 +08:00
8d50f092b5
Styling based on element-ids, it is impossible for themes/plugins to display multiple cards on a single page. Using classes is a more flexible approach. The element-ids are maintained for backwards compatibility with existing plugins/themes.
23 lines
688 B
JavaScript
23 lines
688 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
import DiscourseURL from "discourse/lib/url";
|
|
|
|
acceptance("User Card - Mobile", { mobileView: true });
|
|
|
|
QUnit.skip("user card", async assert => {
|
|
await visit("/t/internationalization-localization/280");
|
|
assert.ok(
|
|
invisible(".user-card"),
|
|
"mobile user card is invisible by default"
|
|
);
|
|
|
|
await click("a[data-user-card=eviltrout]:first");
|
|
assert.ok(visible(".user-card"), "mobile user 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"
|
|
);
|
|
});
|