Skip to content
This repository was archived by the owner on Jun 22, 2021. It is now read-only.

Commit aee680a

Browse files
committed
fix: Fixes pagination test.
1 parent ddabbd5 commit aee680a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/tests/getEntities/paginationTest.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default (facade: Facade<TestEntity>) => {
2424
it('should return all entities when pagination is not defined', async () => {
2525
await createTestEntities();
2626
const result = await facade.getEntities({});
27-
assert.deepEqual(result.entities, [firstEntity]);
27+
assert.deepEqual(result.entities, [firstEntity, secondEntity]);
2828
});
2929

3030
it('should return first entity when there are two entities limitted to 1', async () => {

0 commit comments

Comments
 (0)