We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74ad66d commit 9d48946Copy full SHA for 9d48946
frontend/tests/test-variant-console/quotas/quota-pagination.spec.ts
@@ -3,12 +3,12 @@ import { expect, test } from '@playwright/test';
3
import { createClientIdQuota, deleteClientIdQuota } from '../../shared/quota.utils';
4
import { QuotaPage } from '../utils/quota-page';
5
6
+const DEFAULT_PAGE_SIZE = 50;
7
+
8
test.describe('Quotas - Pagination', () => {
9
test('should not show pagination controls when quotas count is less than page size', async ({ page }) => {
- const quotaPage = new QuotaPage(page);
-
10
await test.step('Navigate to quotas page', async () => {
11
- await quotaPage.goToQuotasList();
+ await page.goto('/quotas');
12
});
13
14
await test.step('Verify pagination is not visible for small datasets', async () => {
0 commit comments