buster/web/playwright-tests/auth-utils/global-teardown.ts

9 lines
259 B
TypeScript
Raw Normal View History

2025-05-02 05:31:05 +08:00
import { FullConfig } from '@playwright/test';
async function globalTeardown(config: FullConfig) {
// Add any cleanup operations here if needed
// For example, you might want to perform some API calls to reset test data
}
export default globalTeardown;