Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
wp-content /
plugins /
elementor /
Delete
Unzip
Name
Size
Permission
Date
Action
app
[ DIR ]
drwxr-sr-x
2026-08-20 14:06
assets
[ DIR ]
drwxr-sr-x
2026-08-20 14:06
core
[ DIR ]
drwxr-sr-x
2026-08-20 14:06
data
[ DIR ]
drwxr-sr-x
2026-08-20 14:06
includes
[ DIR ]
drwxr-sr-x
2026-08-20 14:06
migrations
[ DIR ]
drwxr-sr-x
2026-08-20 14:06
modules
[ DIR ]
drwxr-sr-x
2026-08-20 14:06
vendor
[ DIR ]
drwxr-sr-x
2026-08-20 14:06
vendor_prefixed
[ DIR ]
drwxr-sr-x
2026-08-20 14:06
AGENTS.md
6.45
KB
-rw-r--r--
2026-08-20 14:06
CONTRIBUTING.md
4.71
KB
-rw-r--r--
2026-08-20 14:06
changelog.txt
344.5
KB
-rw-r--r--
2026-08-20 14:06
elementor.php
4.34
KB
-rw-r--r--
2026-08-20 14:06
license.txt
34.32
KB
-rw-r--r--
2026-08-20 14:06
readme.txt
30.81
KB
-rw-r--r--
2026-08-20 14:06
turbo.json
253
B
-rw-r--r--
2026-08-20 14:06
update-snapshots-linux.js
1.49
KB
-rw-r--r--
2026-08-20 14:06
Save
Rename
const { spawn, exec } = require( 'child_process' ); const packageJson = require( './package.json' ); function isDockerExist() { return new Promise( ( resolve ) => { exec( 'docker -v', ( error ) => { resolve( ! error ); } ); } ); } async function run( grep ) { const playwrightVersion = packageJson.devDependencies[ '@playwright/test' ]; const workingDir = process.cwd(); const browsers = process.env.BROWSERS || 'chromium'; const command = 'docker run'; const options = [ '--rm', '--network host', `--volume ${ workingDir }:/work`, '--workdir /work/', `--env BROWSERS=${ browsers }`, '--interactive', process.env.CI ? '' : '--tty', ]; const image = `mcr.microsoft.com/playwright:v${ playwrightVersion.replace( '^', '' ) }-jammy`; const grepFlag = grep.length ? `--grep="${ grep }"` : ''; const commandToRun = `/bin/bash -c "npm run test:playwright -- --update-snapshots ${ grepFlag }"`; await new Promise( ( resolve, reject ) => { const child = spawn( `${ command } ${ options.join( ' ' ) } ${ image } ${ commandToRun }`, { stdio: 'inherit', shell: true, } ); child.on( 'close', ( code ) => { if ( code !== 0 ) { reject( new Error( `Docker process exited with code ${ code }` ) ); } else { resolve(); } } ); } ); } ( async () => { if ( ! await isDockerExist() ) { // eslint-disable-next-line no-console console.error( 'Docker is not installed, please install it first.' ); process.exit( 1 ); } await run( process.argv.slice( 2 ) ); } )();