2018-05-09 11:27:59 -04:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
2019-03-25 08:37:17 -04:00
|
|
|
import DiscourseURL from "discourse/lib/url";
|
2018-05-09 11:27:59 -04:00
|
|
|
|
|
|
|
acceptance("Group Card");
|
|
|
|
|
2018-07-19 06:11:18 -04:00
|
|
|
QUnit.test("group card", async assert => {
|
|
|
|
await visit("/t/301/1");
|
2018-06-15 11:03:24 -04:00
|
|
|
assert.ok(invisible("#group-card"), "user card is invisible by default");
|
2018-05-09 11:27:59 -04:00
|
|
|
|
2018-07-19 06:11:18 -04:00
|
|
|
await click("a.mention-group:first");
|
|
|
|
assert.ok(visible("#group-card"), "card should appear");
|
2019-03-25 08:37:17 -04: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 11:27:59 -04:00
|
|
|
});
|