DEV: prevents reports key to be time dependant when testing (#7850)

This commit is contained in:
Joffrey JAFFEUX
2019-07-03 15:43:01 +02:00
committed by GitHub
parent 4f468ef210
commit f9f1df7611
3 changed files with 15 additions and 18 deletions

View File

@ -44,22 +44,21 @@ QUnit.test("Visit report page", async assert => {
data: [
{
avatar_template:
"/letter_avatar_proxy/v4/letter/q/a4c791/{size}.png",
user_id: 4,
username: "codinghorror",
location: null,
created_at: "2019-06-10T00:00:00.000Z"
"/user_avatar/dev.discourse.org/jo/{size}/17583_2.png",
user_id: 5656,
username: "Jo",
location: "Paris, France",
created_at: "2019-06-29T23:43:38.884Z"
}
],
start_date: "2019-06-01T00:00:00Z",
end_date: "2019-07-01T23:59:59Z",
start_date: "2019-06-29T00:00:00Z",
end_date: "2019-06-29T23:59:59Z",
prev_data: null,
prev_start_date: "2019-04-30T00:00:00Z",
prev_end_date: "2019-06-01T00:00:00Z",
prev_start_date: "2019-06-28T00:00:00Z",
prev_end_date: "2019-06-29T00:00:00Z",
prev30Days: null,
dates_filtering: true,
report_key:
"reports:staff_logins:20190601:20190702:[:prev_period]:50:4",
report_key: "reports:staff_logins:start:end:[:prev_period]:50:4",
primary_color: "rgba(0,136,204,1)",
secondary_color: "rgba(0,136,204,0.1)",
available_filters: [],
@ -87,5 +86,6 @@ QUnit.test("Visit report page", async assert => {
]);
await visit("/admin/reports/staff_logins");
assert.ok(exists(".export-csv-btn"));
});