44239: made some pagination optimizations

This commit is contained in:
Lotte Hofstede
2017-09-07 08:52:26 +02:00
parent 872984e505
commit bcf0026be4
10 changed files with 117 additions and 108 deletions

View File

@@ -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', () => {