#1175 Separate analytics generator and hide analytics parameters (#1546)

* #1175 Separate analytics generator and hide analytics parameters

* Remove unused code
fix unit test

* Rollback mandatory field (appId)

* fix the onChanges problem

* #1175 - rebased branch
This commit is contained in:
Maurizio Vitale
2017-01-27 14:35:28 +00:00
committed by Mario Romano
parent b05247dade
commit 537be1e058
15 changed files with 598 additions and 402 deletions

View File

@@ -395,10 +395,10 @@ describe('AnalyticsReportParametersComponent', () => {
responseText: []
});
});
});
it('Should convert a string in number', () => {
let numberConvert = component.convertNumber('2');
expect(numberConvert).toEqual(2);
it('Should convert a string in number', () => {
let numberConvert = component.convertNumber('2');
expect(numberConvert).toEqual(2);
});
});
});