Skip to content

Commit

Permalink
Added tests of extension to phpunit config
Browse files Browse the repository at this point in the history
  • Loading branch information
korridor committed Jul 3, 2024
1 parent c69701a commit 4c2748f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,21 @@
<testsuite name="Feature">
<directory>tests/Feature</directory>
</testsuite>
<testsuite name="Modules">
<directory suffix="Test.php">./extensions/*/tests/Feature</directory>
<directory suffix="Test.php">./extensions/*/tests/Unit</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>app</directory>
<directory suffix=".php">./extensions</directory>
</include>
<exclude>
<directory suffix=".php">./extensions/*/database</directory>
<directory suffix=".php">./extensions/*/resources</directory>
<directory suffix=".php">./extensions/*/tests</directory>
</exclude>
</source>
<php>
<env name="APP_ENV" value="testing"/>
Expand Down

0 comments on commit 4c2748f

Please sign in to comment.