- 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
6 lines
112 B
JavaScript
6 lines
112 B
JavaScript
// Consolidated mock exports
|
|
module.exports = {
|
|
fetch: require('./node-fetch'),
|
|
uuid: require('./uuid'),
|
|
};
|