Files
react-test/test/e2e-website/playwright.config.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
326 B
TypeScript
Raw Normal View History

2025-12-12 14:26:25 +09:00
import { PlaywrightTestConfig } from '@playwright/test';
export type TestFixture = {};
const config: PlaywrightTestConfig<TestFixture> = {
reportSlowTests: {
max: 1,
threshold: 60 * 1000, // 1min
},
use: {
baseURL: process.env.PLAYWRIGHT_TEST_BASE_URL || 'https://mui.com',
},
};
export default config;