Ghost/ghost/core/test/utils/agents/index.js
Daniel Lockyer 4b5b3de11c
Moved test agents into subfolder
- these agent files are all very similar and should be grouped together
- moving them into a subfolder makes the `test/utils` folder a little
  bit easier to browse
2022-07-26 18:00:37 +02:00

7 lines
261 B
JavaScript

module.exports = {
AdminAPITestAgent: require('./admin-api-test-agent'),
ContentAPITestAgent: require('./content-api-test-agent'),
GhostAPITestAgent: require('./ghost-api-test-agent'),
MembersAPITestAgent: require('./members-api-test-agent')
};