Files
claude-task-master/tests/e2e/setup/global-teardown.js
2025-07-19 00:18:16 +03:00

11 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
};