Files
strapi/tests/utils/get-test-apps.js
2025-11-18 16:58:38 +01:00

13 lines
307 B
JavaScript

'use strict';
/**
* Get test app paths from TEST_APPS environment variable
* This is a simple utility that doesn't import any heavy dependencies,
* making it safe to use in Jest test files.
*/
const getTestApps = () => {
return process.env.TEST_APPS.split(',');
};
module.exports = { getTestApps };