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

9 lines
265 B
TypeScript

import type { 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;