Skip to content

Commit

Permalink
fix(pagination): fix TS linters
Browse files Browse the repository at this point in the history
  • Loading branch information
Leotheluck authored and dpellier committed Feb 2, 2024
1 parent 9929597 commit d2a5379
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ describe('e2e:osds-pagination', () => {
});

it('should adapt to default step of 25 if defaultItemsPerPage', async() => {
await setup({ attributes: { current: 1, totalItems: 20, defaultItemsPerPage: 25 } });
await setup({ attributes: { current: 1, defaultItemsPerPage: 25 , totalItems: 20 } });

pageItemElements = await page.findAll('osds-pagination >>> ul > li:not([class="arrows"])');
expect(pageItemElements.length).toBe(1);
Expand Down

0 comments on commit d2a5379

Please sign in to comment.