mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-24 17:51:51 +02:00
Move acceptance test mocks to nonstandard ports and add options for running locally GitOrigin-RevId: bd8f70ac8d80599daccc51cfe7b90a2ad8d8c3d8
13 lines
371 B
JavaScript
13 lines
371 B
JavaScript
// silence settings module
|
|
console.log = function () {}
|
|
const Settings = require('@overleaf/settings')
|
|
|
|
const MODULES = Settings.moduleImportSequence
|
|
const TARGET = process.argv.slice(2).pop() || 'test_acceptance'
|
|
|
|
if (TARGET === '--name-only') {
|
|
console.debug(MODULES.join('\n'))
|
|
} else {
|
|
console.debug(MODULES.map(name => `modules/${name}/${TARGET}`).join('\n'))
|
|
}
|