-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
22 lines (22 loc) · 739 Bytes
/
Copy pathphpunit.xml.dist
File metadata and controls
22 lines (22 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" bootstrap="vendor/autoload.php">
<php>
<var name="driver_config_factory" value="Playwright\Mink\Tests\Config::getInstance"/>
</php>
<testsuites>
<testsuite name="Functional tests">
<directory>vendor/mink/driver-testsuite/tests</directory>
</testsuite>
<testsuite name="Regression tests">
<file>tests/Driver/AttachFileRelativePathTest.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./src</directory>
</whitelist>
</filter>
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"/>
</listeners>
</phpunit>