mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:32:23 +08:00
61 lines
1.4 KiB
JavaScript
61 lines
1.4 KiB
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Dashboard Next", {
|
|
loggedIn: true
|
|
});
|
|
|
|
QUnit.test("Visit dashboard next page", async assert => {
|
|
await visit("/admin");
|
|
|
|
assert.ok(exists(".dashboard-next"), "has dashboard-next class");
|
|
|
|
assert.ok(exists(".admin-report.signups"), "signups report");
|
|
assert.ok(exists(".admin-report.posts"), "posts report");
|
|
assert.ok(exists(".admin-report.dau-by-mau"), "dau-by-mau report");
|
|
assert.ok(
|
|
exists(".admin-report.daily-engaged-users"),
|
|
"daily-engaged-users report"
|
|
);
|
|
assert.ok(
|
|
exists(".admin-report.new-contributors"),
|
|
"new-contributors report"
|
|
);
|
|
|
|
assert.equal(
|
|
$(".section.dashboard-problems .problem-messages ul li:first-child")
|
|
.html()
|
|
.trim(),
|
|
"Houston...",
|
|
"displays problems"
|
|
);
|
|
});
|
|
|
|
QUnit.test("it has counters", async assert => {
|
|
await visit("/admin");
|
|
|
|
assert.equal(
|
|
$(".admin-report.page-view-total-reqs .today-count")
|
|
.text()
|
|
.trim(),
|
|
"1.1k"
|
|
);
|
|
assert.equal(
|
|
$(".admin-report.page-view-total-reqs .yesterday-count")
|
|
.text()
|
|
.trim(),
|
|
"2.5k"
|
|
);
|
|
assert.equal(
|
|
$(".admin-report.page-view-total-reqs .sevendays-count")
|
|
.text()
|
|
.trim(),
|
|
"18.6k"
|
|
);
|
|
assert.equal(
|
|
$(".admin-report.page-view-total-reqs .thirty-days-count")
|
|
.text()
|
|
.trim(),
|
|
"80.8k"
|
|
);
|
|
});
|