mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-10 03:23:07 +00:00
Added more comments
This commit is contained in:
@@ -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();
|
||||
});
|
||||
|
||||
});
|
||||
|
Reference in New Issue
Block a user