Files
claude-task-master/tests/e2e/setup/global-teardown.js
Ralph Khreish 14cc09d241 more wip
2025-07-19 00:18:37 +03:00

12 lines
276 B
JavaScript

/**
* Global teardown for E2E tests
* Runs once after all test suites
*/
module.exports = async () => {
console.log('\n🧹 Cleaning up E2E test environment...\n');
// Any global cleanup needed
// Note: Individual test directories are cleaned up in afterEach hooks
};