mirror of
https://github.com/discourse/discourse.git
synced 2025-02-12 12:57:15 +08:00
17 lines
294 B
JavaScript
17 lines
294 B
JavaScript
import {
|
|
acceptance
|
|
}
|
|
from "helpers/qunit-helpers";
|
|
|
|
acceptance("Dashboard Next", {
|
|
loggedIn: true
|
|
});
|
|
|
|
QUnit.test("Vist dashboard next page", assert => {
|
|
visit("/admin/dashboard-next");
|
|
|
|
andThen(() => {
|
|
assert.ok($('.dashboard-next').length, "has dashboard-next class");
|
|
});
|
|
});
|