mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-09 11:03:05 +00:00
44239: made some pagination optimizations
This commit is contained in:
@@ -317,7 +317,7 @@ describe('Empty Utils', () => {
|
||||
});
|
||||
|
||||
it('should return false for an empty Object', () => {
|
||||
expect(isEmpty({})).toBe(false);
|
||||
expect(isEmpty({})).toBe(true);
|
||||
});
|
||||
|
||||
it('should return true for an Object that has zero \'length\'', () => {
|
||||
@@ -377,7 +377,7 @@ describe('Empty Utils', () => {
|
||||
});
|
||||
|
||||
it('should return true for an empty Object', () => {
|
||||
expect(isNotEmpty({})).toBe(true);
|
||||
expect(isNotEmpty({})).toBe(false);
|
||||
});
|
||||
|
||||
it('should return false for an Object that has zero length', () => {
|
||||
|
Reference in New Issue
Block a user