2018-05-09 11:27:59 -04:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
|
|
|
|
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");
|
2018-05-09 11:27:59 -04:00
|
|
|
});
|