-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit-e2e.xml
More file actions
30 lines (30 loc) · 995 Bytes
/
phpunit-e2e.xml
File metadata and controls
30 lines (30 loc) · 995 Bytes
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" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="tests/bootstrap-e2e.php"
colors="true"
cacheDirectory=".phpunit.cache"
executionOrder="depends,defects"
shortenArraysForExportThreshold="10"
testdox="true"
defaultTimeLimit="10"
enforceTimeLimit="true"
timeoutForSmallTests="5"
timeoutForMediumTests="15"
timeoutForLargeTests="30"
stopOnFailure="true">
<testsuites>
<testsuite name="E2E">
<directory>tests/Feature</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>src</directory>
</include>
</source>
<php>
<env name="WP_TESTS_DIR" value="/tmp/wordpress-tests-lib"/>
<env name="WP_CORE_DIR" value="/tmp/wordpress"/>
</php>
</phpunit>