Files
websitedev/proto/jest.globalTeardown.integration.js
T

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.')
}