Files
old-v2-backend/wordpress/wp-content/plugins/wp-graphql/phpunit.xml.dist
2018-06-25 00:00:37 +02:00

36 lines
824 B
XML
Executable File

<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<groups>
<exclude>
<group>ajax</group>
</exclude>
<exclude>
<group>external-http</group>
</exclude>
<exclude>
<group>ms-files</group>
</exclude>
</groups>
<testsuites>
<testsuite name="WPGraphQL Test Suite">
<directory prefix="test-" suffix=".php">./tests/</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<file>./wp-graphql.php</file>
<file>./access-functions.php</file>
<directory suffix=".php">./src/</directory>
</whitelist>
</filter>
</phpunit>