9 lines
287 B
JavaScript
Executable File
9 lines
287 B
JavaScript
Executable File
// Global teardown for integration tests
|
|
module.exports = async () => {
|
|
console.log('🧹 Cleaning up integration test environment...')
|
|
|
|
// Clean up any test data or connections if needed
|
|
// For now, just log completion
|
|
console.log('✅ Integration test cleanup completed.')
|
|
}
|