discourse/test/javascripts/acceptance/header-test-staff.js.es6

15 lines
404 B
Plaintext
Raw Normal View History

import { acceptance } from "helpers/qunit-helpers";
acceptance("Header (Staff)", { loggedIn: true });
2014-07-31 14:17:18 -04:00
test("header", () => {
2014-07-31 14:17:18 -04:00
visit("/");
// User dropdown
click("#current-user");
andThen(() => {
ok(exists(".user-menu:visible"), "is lazily rendered after user opens it");
2015-08-29 19:54:13 -04:00
ok(exists(".user-menu .menu-links-header"), "has showing / hiding user-dropdown links correctly bound");
2014-07-31 14:17:18 -04:00
});
});