13 lines
293 B
JavaScript
13 lines
293 B
JavaScript
/**
|
|
* Global teardown for E2E tests.
|
|
* Runs once after all tests.
|
|
*/
|
|
|
|
async function globalTeardown() {
|
|
// Cleanup can be added here if needed
|
|
// For now, we keep test users in the database for debugging
|
|
console.log('[test] Global teardown complete')
|
|
}
|
|
|
|
export default globalTeardown
|