File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
frontend/tests/test-variant-console/quotas Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ import { expect, test } from '@playwright/test';
33import { createClientIdQuota , deleteClientIdQuota } from '../../shared/quota.utils' ;
44import { 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 } ` } )
You can’t perform that action at this time.
0 commit comments