Skip to content

Commit

Permalink
run phpunit --migrate-configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
owenpearson committed Mar 9, 2021
1 parent d7b43f1 commit e5b5881
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
<phpunit>
<testsuites>
<testsuite name="ably">
<directory>tests</directory>
</testsuite>
</testsuites>
<listeners>
<listener file="tests/extensions/DebugTestListener.php" class="DebugTestListener" />
</listeners>
<filter>
<whitelist>
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="ably">
<directory>tests</directory>
</testsuite>
</testsuites>
<listeners>
<listener file="tests/extensions/DebugTestListener.php" class="DebugTestListener"/>
</listeners>
</phpunit>

0 comments on commit e5b5881

Please sign in to comment.