mirror of
https://github.com/WordPress/create-block-theme.git
synced 2025-10-04 16:21:40 +08:00
20 lines
548 B
XML
20 lines
548 B
XML
<?xml version="1.0"?>
|
|
<phpunit
|
|
bootstrap="tests/bootstrap.php"
|
|
backupGlobals="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
printerClass="Sempro\PHPUnitPrettyPrinter\PrettyPrinterForPhpUnit9"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="testing">
|
|
<directory prefix="test-" suffix=".php">./tests/</directory>
|
|
<exclude>./tests/test-sample.php</exclude>
|
|
</testsuite>
|
|
</testsuites>
|
|
<php>
|
|
<env name="PHPUNIT_PRETTY_PRINT_PROGRESS" value="true" />
|
|
</php>
|
|
</phpunit>
|