16 lines
340 B
JavaScript
16 lines
340 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Group Card");
|
|
|
|
QUnit.test("group card", assert => {
|
|
visit('/t/301/1');
|
|
|
|
assert.ok(invisible('#group-card'), 'user card is invisible by default');
|
|
click('a.mention-group:first');
|
|
|
|
andThen(() => {
|
|
assert.ok(visible('#group-card'), 'card should appear');
|
|
});
|
|
|
|
});
|