mirror of https://github.com/buster-so/buster.git
9 lines
259 B
TypeScript
9 lines
259 B
TypeScript
|
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;
|