mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-12 06:53:44 +03:00

* Tests: Move tests infrastructure, set up travis Consolidates the composer files so we can run install once in travis. * Return empty array if no values are $_POST'ed to the form Fixes an issue with tests + null values in logs * Clean up some naming & create helper functions for tests * Debug travis * Remove debug * Fix notices on form * Turn on multisite flag
20 lines
465 B
XML
20 lines
465 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>
|
|
</phpunit>
|