We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f07bd18 commit f3bde25Copy full SHA for f3bde25
lib/report.js
@@ -417,7 +417,7 @@ class Report {
417
endDate,
418
},
419
};
420
- }
+ };
421
422
const dates = {
423
agp: {},
test/report_test.js
@@ -266,7 +266,7 @@ describe('report', () => {
266
equal(Object.keys(allReportQueries).includes('settings'), true);
267
});
268
it('should include daily report when all report queries when asked for', () => {
269
- equal(Object.keys(allReportQueries).includes('settings'), true);
+ equal(Object.keys(allReportQueries).includes('daily'), true);
270
271
it('should not include an `all` report type ', () => {
272
equal(Object.keys(allReportQueries).includes('all'), false);
0 commit comments