FEATURE: adds a /admin/reports route to list all reports

This commit is contained in:
Joffrey JAFFEUX
2018-06-18 12:31:56 +02:00
committed by GitHub
parent 4b604b1e68
commit f2dbe66367
14 changed files with 129 additions and 8 deletions

View File

@@ -0,0 +1,31 @@
import { acceptance } from "helpers/qunit-helpers";
acceptance("Reports", {
loggedIn: true
});
QUnit.test("Visit reports page", assert => {
visit("/admin/reports");
andThen(() => {
assert.equal($(".reports-list .report").length, 1);
const $report = $(".reports-list .report:first-child");
assert.equal(
$report
.find(".report-title")
.html()
.trim(),
"My report"
);
assert.equal(
$report
.find(".report-description")
.html()
.trim(),
"List of my activities"
);
});
});

View File

@@ -0,0 +1,11 @@
export default {
"/admin/reports": {
reports: [
{
title: "My report",
description: "List of my activities",
type: "my_report"
}
]
}
};