Skip to content

Commit 9d48946

Browse files
committed
Fixes e2e'
1 parent 74ad66d commit 9d48946

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

frontend/tests/test-variant-console/quotas/quota-pagination.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ import { expect, test } from '@playwright/test';
33
import { createClientIdQuota, deleteClientIdQuota } from '../../shared/quota.utils';
44
import { QuotaPage } from '../utils/quota-page';
55

6+
const DEFAULT_PAGE_SIZE = 50;
7+
68
test.describe('Quotas - Pagination', () => {
79
test('should not show pagination controls when quotas count is less than page size', async ({ page }) => {
8-
const quotaPage = new QuotaPage(page);
9-
1010
await test.step('Navigate to quotas page', async () => {
11-
await quotaPage.goToQuotasList();
11+
await page.goto('/quotas');
1212
});
1313

1414
await test.step('Verify pagination is not visible for small datasets', async () => {

0 commit comments

Comments
 (0)