five-for-the-future/phpunit.xml.dist

28 lines
588 B
Plaintext
Raw Permalink Normal View History

<phpunit
bootstrap="plugins/wporg-5ftf/tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
2022-09-13 21:34:51 +03:00
<php>
<const name="WP_TESTS_MULTISITE" value="1" />
</php>
2022-09-13 21:34:51 +03:00
<testsuites>
<testsuite name="Five for the Future Plugin">
<directory prefix="test-" suffix=".php">
./plugins/wporg-5ftf/tests/
</directory>
</testsuite>
</testsuites>
2022-09-13 21:34:51 +03:00
<filter>
<whitelist>
<directory suffix=".php">./plugins/wporg-5ftf/includes</directory>
</whitelist>
</filter>
</phpunit>