mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 17:15:32 +08:00
14 lines
451 B
JavaScript
14 lines
451 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Hamburger Menu - Staff", { loggedIn: true });
|
|
|
|
test("Menu Items", (assert) => {
|
|
visit("/");
|
|
click("#toggle-hamburger-menu");
|
|
andThen(() => {
|
|
assert.ok(exists(".hamburger-panel .admin-link"));
|
|
assert.ok(exists(".hamburger-panel .flagged-posts-link"));
|
|
assert.ok(exists(".hamburger-panel .flagged-posts.badge-notification"), "it displays flag notifications");
|
|
});
|
|
});
|