hello-theme/tests/playwright/assets/wp-cli.ts
2025-08-14 11:01:55 +03:00

6 lines
225 B
TypeScript

export const wpCli = async ( command: string ) => {
const port = ( 1 === Number( process.env.TEST_PARALLEL_INDEX ) ) ? 8889 : 8888;
const { cli } = await import( '@elementor/wp-lite-env' );
await cli( port, command );
};