-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
30 lines (30 loc) · 1.17 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0"?>
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="features">
<directory prefix="test-" suffix=".php">./tests/admin/</directory>
<directory prefix="test-" suffix=".php">./tests/classic-editor/</directory>
<directory prefix="test-" suffix=".php">./tests/dashboard/</directory>
<directory prefix="test-" suffix=".php">./tests/debug/</directory>
<directory prefix="test-" suffix=".php">./tests/frontend/</directory>
<directory prefix="test-" suffix=".php">./tests/localization/</directory>
<directory prefix="test-" suffix=".php">./tests/plugins/</directory>
<directory prefix="test-" suffix=".php">./tests/polyfills/</directory>
<directory prefix="test-" suffix=".php">./tests/security/</directory>
<directory prefix="test-" suffix=".php">./tests/speed/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./features/</directory>
<file>helpers.php</file>
</whitelist>
</filter>
</phpunit>