• I am trying to run PHPUnit tests for my plugin using wp-env.
    The manual setup seems to work: wp-env start starts up a new environment, I can go to the instance in a browser and everything works.

    Now I want to run PHPUnit tests for my plugin in this environment, but can’t find any way to do so.

    According to the doc – https://developer.www.ads-software.com/block-editor/reference-guides/packages/packages-env/, PHPUnit should be available in all containers, but wp-env run tests-cli phpunit fails saying "phpunit": executable file not found in $PATH: unknown

    I thought I may need to run composer install , but composer install also fails due to missing composer.json.

    Can anyone please help?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Maxwell Gray

    (@slidesharedownloader)

    To run PHPUnit tests with wp-env, you can follow these steps:

    1. Install wp-env: Start by installing the wp-env package globally on your system. You can use the following command: npm install -g @wordpress/env.
    2. Create a new WordPress environment: Set up a new WordPress environment using wp-env. Navigate to your project’s root directory and run the following command: wp-env start.
    3. Configure PHPUnit: In your project’s root directory, locate the phpunit.xml.dist file. Open it and configure the necessary settings, such as the database credentials and test suite details.
    4. Write your PHPUnit tests: Create PHPUnit test classes and methods to test your PHP code. Place these test files in a directory named tests/phpunit/ within your project.
    5. Run the tests: Once your tests are ready, you can execute them by running the following command from your project’s root directory: wp-env run phpunit.

    That’s it! wp-env will set up a local WordPress environment and run your PHPUnit tests against it. Make sure to review the wp-env documentation for more advanced usage and configuration options.

    Note: The above steps assume that you have Node.js and NPM installed on your system. If not, you will need to install Node.js first before proceeding with the wp-env installation.

    Thread Starter enzam

    (@enzam)

    wp-env run phpunit doesn’t work, it fails saying phpunit does not exist.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to run PHPunit tests with wp-env?’ is closed to new replies.