discourse/test/javascripts/acceptance/group-card-test.js.es6
David Taylor 8d50f092b5
DEV: Use classes for styling user and group cards (#8913)
Styling based on element-ids, it is impossible for themes/plugins to display multiple cards on a single page. Using classes is a more flexible approach. The element-ids are maintained for backwards compatibility with existing plugins/themes.
2020-02-13 09:58:17 +00:00

20 lines
584 B
JavaScript

import { acceptance } from "helpers/qunit-helpers";
import DiscourseURL from "discourse/lib/url";
acceptance("Group Card");
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-card"), "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"
);
});