mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-04 20:03:44 +03:00
28 lines
588 B
XML
28 lines
588 B
XML
<phpunit
|
|
bootstrap="plugins/wporg-5ftf/tests/bootstrap.php"
|
|
backupGlobals="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
>
|
|
|
|
<php>
|
|
<const name="WP_TESTS_MULTISITE" value="1" />
|
|
</php>
|
|
|
|
<testsuites>
|
|
<testsuite name="Five for the Future Plugin">
|
|
<directory prefix="test-" suffix=".php">
|
|
./plugins/wporg-5ftf/tests/
|
|
</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">./plugins/wporg-5ftf/includes</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|