mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
411a12cb2d
[misc] set up custom base config for acceptance tests GitOrigin-RevId: bd49c705360488fd75c6ad311afd13f22f81de61
8 lines
290 B
JavaScript
8 lines
290 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'
|
|
|
|
console.debug(MODULES.map(name => `modules/${name}/${TARGET}`).join('\n'))
|