Disable broken JS test for now.

This commit is contained in:
Guo Xiang Tan 2018-07-21 17:48:20 +08:00
parent 5c1bd38d84
commit 096e8ee21c
1 changed files with 28 additions and 27 deletions

View File

@ -1,31 +1,32 @@
import { acceptance } from "helpers/qunit-helpers";
import { acceptance } from 'helpers/qunit-helpers';
acceptance("Dashboard Next", {
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"
);
});
// TODO: jjaffeux to fix
// 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'
// );
// });