mirror of
https://github.com/cloud-shuttle/leptos-shadcn-ui.git
synced 2026-01-03 19:42:56 +00:00
13 lines
366 B
TypeScript
13 lines
366 B
TypeScript
import { chromium, FullConfig } from '@playwright/test';
|
|
|
|
async function globalSetup(config: FullConfig) {
|
|
console.log('🎭 Setting up Playwright test environment...');
|
|
|
|
// You can add global setup logic here
|
|
// For example: seeding test data, starting additional services, etc.
|
|
|
|
console.log('✅ Global setup complete');
|
|
}
|
|
|
|
export default globalSetup;
|