discourse/test/javascripts/acceptance/badges-test.js.es6

18 lines
568 B
Plaintext
Raw Normal View History

import { acceptance } from "helpers/qunit-helpers";
acceptance("Badges");
2017-06-14 13:57:58 -04:00
QUnit.test("Visit Badge Pages", assert => {
visit("/badges");
andThen(() => {
2017-06-14 13:57:58 -04:00
assert.ok($('body.badges-page').length, "has body class");
assert.ok(exists('.badge-groups .badge-card'), "has a list of badges");
});
visit("/badges/9/autobiographer");
andThen(() => {
2017-06-14 13:57:58 -04:00
assert.ok(exists('.badge-card'), "has the badge in the listing");
assert.ok(exists('.user-info'), "has the list of users with that badge");
assert.ok(!exists('.badge-card:eq(0) script'));
});
2017-06-14 13:57:58 -04:00
});