Update dependencies and refactor loading components
- Removed `react-is` and `require-in-the-middle` overrides from `package.json` and `pnpm-lock.yaml`. - Updated various dependencies across multiple packages, including `@types/node` to `^24.5.2`, `react-hook-form` to `^7.63.0`, and `@ai-sdk/openai` to `^2.0.32`. - Deleted the `loading.tsx` component from the admin accounts directory, streamlining the codebase. - Adjusted `playwright.config.ts` to use a configurable number of workers for CI environments, enhancing test performance. - Improved error handling in user ban and reactivation dialogs to provide clearer feedback to the admin user.
This commit is contained in:
@@ -4,6 +4,11 @@ import { config as dotenvConfig } from 'dotenv';
|
||||
dotenvConfig();
|
||||
dotenvConfig({ path: '.env.local' });
|
||||
|
||||
/**
|
||||
* Number of workers to use in CI. Tweak based on your CI provider's resources.
|
||||
*/
|
||||
const CI_WORKERS = 3;
|
||||
|
||||
const enableBillingTests = process.env.ENABLE_BILLING_TESTS === 'true';
|
||||
const enableTeamAccountTests =
|
||||
(process.env.ENABLE_TEAM_ACCOUNT_TESTS ?? 'true') === 'true';
|
||||
@@ -47,7 +52,7 @@ export default defineConfig({
|
||||
forbidOnly: !!process.env.CI,
|
||||
retries: 3,
|
||||
/* Limit parallel tests on CI. */
|
||||
workers: process.env.CI ? 1 : undefined,
|
||||
workers: process.env.CI ? CI_WORKERS : undefined,
|
||||
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
|
||||
reporter: 'html',
|
||||
/* Ignore billing tests if the environment variable is not set. */
|
||||
|
||||
Reference in New Issue
Block a user