Add analytics report list unit tests

This commit is contained in:
mauriziovitale84
2016-10-10 14:34:27 +01:00
parent 9dc673af08
commit 92ec83cfd6
4 changed files with 141 additions and 14 deletions

View File

@@ -65,7 +65,9 @@ export class AnalyticsReportListComponent implements OnInit {
getReportListByAppId() {
this.analyticsService.getReportList().subscribe(
(res: ReportModel[]) => {
this.reports = res;
res.forEach((report) => {
this.reportObserver.next(report);
});
this.onSuccess.emit(res);
},
(err: any) => {