2018-05-09 17:27:59 +02:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
2019-03-25 20:37:17 +08:00
|
|
|
import DiscourseURL from "discourse/lib/url";
|
2018-05-09 17:27:59 +02:00
|
|
|
|
|
|
|
acceptance("Group Card");
|
|
|
|
|
2020-05-27 17:36:50 +02:00
|
|
|
QUnit.skip("group card", async (assert) => {
|
2019-07-03 13:45:03 +02:00
|
|
|
await visit("/t/-/301/1");
|
2020-02-13 09:58:17 +00:00
|
|
|
assert.ok(invisible(".group-card"), "user card is invisible by default");
|
2018-05-09 17:27:59 +02:00
|
|
|
|
2018-07-19 12:11:18 +02:00
|
|
|
await click("a.mention-group:first");
|
2020-02-13 09:58:17 +00:00
|
|
|
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 17:27:59 +02:00
|
|
|
});
|