mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 06:51:04 +08:00
12 lines
380 B
JavaScript
12 lines
380 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Group Card - Mobile", { mobileView: true });
|
|
|
|
QUnit.test("group card", async assert => {
|
|
await visit("/t/301/1");
|
|
assert.ok(invisible("#group-card"), "user card is invisible by default");
|
|
|
|
await click("a.mention-group:first");
|
|
assert.ok(visible(".group-details-container"), "group page show be shown");
|
|
});
|