import { teardownTestDb } from './utils/testDb'; export default async function globalTeardown() { console.log('🧹 Cleaning up test environment...'); await teardownTestDb(); console.log('✅ Test environment cleaned up'); }