import { FullConfig } from '@playwright/test'; /** * Global Teardown for E2E Tests * Runs once after all tests complete */ async function globalTeardown(config: FullConfig) { console.log('🧹 Starting E2E Test Global Teardown...'); // Clean up any shared test resources // Individual test cleanup is handled by TestDataManager in each test console.log('✅ Global teardown complete'); } export default globalTeardown;