2018-05-09 23:27:59 +08:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
2019-03-25 20:37:17 +08:00
|
|
|
import DiscourseURL from "discourse/lib/url";
|
2018-05-09 23:27:59 +08:00
|
|
|
|
|
|
|
acceptance("Group Card - Mobile", { mobileView: true });
|
|
|
|
|
2018-07-19 18:11:18 +08:00
|
|
|
QUnit.test("group card", async assert => {
|
|
|
|
await visit("/t/301/1");
|
2019-03-25 20:37:17 +08:00
|
|
|
assert.ok(
|
|
|
|
invisible("#group-card"),
|
|
|
|
"mobile group card is invisible by default"
|
|
|
|
);
|
2018-05-09 23:27:59 +08:00
|
|
|
|
2018-07-19 18:11:18 +08:00
|
|
|
await click("a.mention-group:first");
|
2019-03-25 20:37:17 +08:00
|
|
|
assert.ok(visible("#group-card"), "mobile group card should appear");
|
|
|
|
|
|
|
|
sandbox.stub(DiscourseURL, "routeTo");
|
|
|
|
await click(".card-content a.group-page-link");
|
|
|
|
assert.ok(
|
|
|
|
DiscourseURL.routeTo.calledWith("/g/discourse"),
|
|
|
|
"it should navigate to the group page"
|
|
|
|
);
|
2018-05-09 23:27:59 +08:00
|
|
|
});
|