feat: consolidate test mocks with centralized index

- Add mock aggregator for cleaner test imports
- Export fetch and uuid mocks from single entry point
- Reduce mock import complexity in test files
- Improve test maintainability and organization
This commit is contained in:
William Valentin
2025-09-08 01:43:20 -07:00
parent 475c2e5469
commit 9fbad062e5

5
tests/__mocks__/index.js Normal file
View File

@@ -0,0 +1,5 @@
// Consolidated mock exports
module.exports = {
fetch: require('./node-fetch'),
uuid: require('./uuid'),
};