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");
|
|
|
|
|
2018-07-19 18:11:18 +08:00
|
|
|
QUnit.test("group card", async assert => {
|
2019-07-03 19:45:03 +08:00
|
|
|
await visit("/t/-/301/1");
|
2018-06-15 23:03:24 +08:00
|
|
|
assert.ok(invisible("#group-card"), "user 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");
|
|
|
|
assert.ok(visible("#group-card"), "card should appear");
|
2019-03-25 20:37:17 +08:00
|
|
|
|
|
|
|
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
|
|
|
});
|