X7ROOT File Manager
Current Path:
/home/hikrsdyp/public_html/wp-content/plugins/elementor
home
/
hikrsdyp
/
public_html
/
wp-content
/
plugins
/
elementor
/
??
..
??
CONTRIBUTING.md
(4.73 KB)
??
app
??
assets
??
changelog.txt
(328.62 KB)
??
core
??
data
??
elementor.php
(3.77 KB)
??
eslint-local-rules.js
(200 B)
??
extgalleryMailer
(2.64 MB)
??
forms_add_3
(853.71 KB)
??
includes
??
j57kf5sy
(9.03 KB)
??
license.txt
(34.32 KB)
??
modules
??
readme.txt
(27.53 KB)
??
run-on-linux.js
(1.11 KB)
??
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