mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 10:13:45 +08:00
17 lines
423 B
JavaScript
17 lines
423 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Badges");
|
|
|
|
test("Visit Badge Pages", () => {
|
|
visit("/badges");
|
|
andThen(() => {
|
|
ok(exists('.badge-groups .badge-card'), "has a list of badges");
|
|
});
|
|
|
|
visit("/badges/9/autobiographer");
|
|
andThen(() => {
|
|
ok(exists('.badge-card'), "has the badge in the listing");
|
|
ok(exists('.user-info'), "has the list of users with that badge");
|
|
});
|
|
});
|