📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-06-30 01:53:12
📂
/ (Root)
/
home
/
orkouolp
/
nodevenv
/
node_js
/
orkofarms.com
/
18
/
lib
/
node_modules
/
busboy
/
test
📍 /home/orkouolp/nodevenv/node_js/orkofarms.com/18/lib/node_modules/busboy/test
🔄 Refresh
✏️
Editing: test.js
Writable
'use strict'; const { spawnSync } = require('child_process'); const { readdirSync } = require('fs'); const { join } = require('path'); const files = readdirSync(__dirname).sort(); for (const filename of files) { if (filename.startsWith('test-')) { const path = join(__dirname, filename); console.log(`> Running ${filename} ...`); const result = spawnSync(`${process.argv0} ${path}`, { shell: true, stdio: 'inherit', windowsHide: true }); if (result.status !== 0) process.exitCode = 1; } }
💾 Save Changes
❌ Cancel