Skip to content

Commit 084b0af

Browse files
committed
Decrease e2e test limit to 15
1 parent e99d002 commit 084b0af

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

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

6-
const QUOTAS_TEST_LIMIT = 50;
6+
const QUOTAS_TEST_LIMIT = 15;
77

8-
test.describe('Quotas - Display 50 quotas', () => {
8+
test.describe('Quotas - Display 15 quotas', () => {
99
test(`should create ${QUOTAS_TEST_LIMIT} quotas and verify all are visible on the page`, async ({ page }) => {
1010
const quotaPage = new QuotaPage(page);
1111
const timestamp = Date.now();
@@ -38,7 +38,7 @@ test.describe('Quotas - Display 50 quotas', () => {
3838
expect(visibleQuotaCount).toBe(QUOTAS_TEST_LIMIT);
3939
}).toPass({ timeout: 15_000, intervals: [500, 1000, 5000] });
4040

41-
// Final verification - count should now be stable at 50
41+
// Final verification - count should now be stable at 15
4242
const visibleQuotaCount = await page
4343
.locator('tr')
4444
.filter({ hasText: `quota-test-${timestamp}` })

0 commit comments

Comments
 (0)