Skip to content

Commit 8154932

Browse files
committed
Run pagination tests sequentially
1 parent d923cd2 commit 8154932

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

frontend/src/components/pages/quotas/quotas-list.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ const QuotasList = () => {
107107
}
108108

109109
if (error) {
110+
console.error('[QuotasList] Error fetching quotas:', error.message, error);
110111
const isPermissionError = error.message.includes('permission') || error.message.includes('forbidden');
111112

112113
if (isPermissionError) {

frontend/tests/test-variant-console/playwright.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ const config = defineConfig({
7474
...devices['Desktop Chrome'],
7575
permissions: ['clipboard-read', 'clipboard-write'],
7676
},
77-
testIgnore: '**/quotas/pagination.spec.ts',
77+
testIgnore: '**/quotas/*.spec.ts',
7878
},
79-
// Isolated project for quota pagination tests (avoid RPK conflicts)
79+
// Isolated project for quota tests (avoid RPK conflicts)
8080
{
8181
name: 'quotas-isolated',
82-
testMatch: '**/quotas/pagination.spec.ts',
82+
testMatch: '**/quotas/*.spec.ts',
8383
workers: 1,
8484
use: {
8585
...devices['Desktop Chrome'],

0 commit comments

Comments
 (0)