2015-04-06 14:14:00 -04:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("User Card");
|
2014-10-20 12:11:36 -04:00
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
QUnit.test("card", assert => {
|
2014-10-20 12:11:36 -04:00
|
|
|
visit('/');
|
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok(invisible('#user-card'), 'user card is invisible by default');
|
2014-10-20 12:11:36 -04:00
|
|
|
click('a[data-user-card=eviltrout]:first');
|
|
|
|
|
2015-03-19 07:22:56 -04:00
|
|
|
andThen(() => {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok(visible('#user-card'), 'card should appear');
|
2014-10-20 12:11:36 -04:00
|
|
|
});
|
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
});
|