mirror of
https://github.com/strapi/strapi.git
synced 2026-05-03 16:22:30 +00:00
13 lines
307 B
JavaScript
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 };
|