chore: improve add-task command e2e test

This commit is contained in:
Ralph Khreish
2025-07-09 13:54:55 +03:00
parent 890fc6cc5c
commit bb1b36e891
11 changed files with 1420 additions and 941 deletions

View File

@@ -0,0 +1,11 @@
/**
* 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
};