2015-04-07 02:14:00 +08:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
|
|
|
|
acceptance("Badges");
|
2014-08-01 06:44:32 +08:00
|
|
|
|
2015-03-19 19:22:56 +08:00
|
|
|
test("Visit Badge Pages", () => {
|
2014-08-01 06:44:32 +08:00
|
|
|
visit("/badges");
|
2015-03-19 19:22:56 +08:00
|
|
|
andThen(() => {
|
2016-11-11 02:33:31 +08:00
|
|
|
ok($('body.badges-page').length, "has body class");
|
2016-03-26 03:32:48 +08:00
|
|
|
ok(exists('.badge-groups .badge-card'), "has a list of badges");
|
2014-08-01 06:44:32 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
visit("/badges/9/autobiographer");
|
2015-03-19 19:22:56 +08:00
|
|
|
andThen(() => {
|
2016-03-26 03:32:48 +08:00
|
|
|
ok(exists('.badge-card'), "has the badge in the listing");
|
2016-03-25 01:50:45 +08:00
|
|
|
ok(exists('.user-info'), "has the list of users with that badge");
|
2016-07-29 03:53:36 +08:00
|
|
|
ok(!exists('.badge-card:eq(0) script'));
|
2014-08-01 06:44:32 +08:00
|
|
|
});
|
|
|
|
});
|