Added more comments

This commit is contained in:
Giuseppe Digilio
2019-03-20 19:57:07 +01:00
parent 825464bb9c
commit 6335d61dda
26 changed files with 1505 additions and 123 deletions

View File

@@ -156,7 +156,7 @@ describe('SectionFormOperationsService test suite', () => {
}
};
expect(service.isPartOfArrayOfGroup(model)).toBeTruthy();
expect(service.isPartOfArrayOfGroup(model as any)).toBeTruthy();
});
it('should return false when parent element doesn\'t belong to an array group element', () => {
@@ -164,7 +164,7 @@ describe('SectionFormOperationsService test suite', () => {
parent: null
};
expect(service.isPartOfArrayOfGroup(model)).toBeFalsy();
expect(service.isPartOfArrayOfGroup(model as any)).toBeFalsy();
});
});