Compare commits

...

7 Commits

5 changed files with 29 additions and 29 deletions

View File

@ -6,7 +6,7 @@ namespace Pest;
function version(): string function version(): string
{ {
return '2.18.0'; return '2.18.1';
} }
function testDirectory(string $file = ''): string function testDirectory(string $file = ''): string

View File

@ -4,28 +4,28 @@
bootstrap="vendor/autoload.php" bootstrap="vendor/autoload.php"
colors="true" colors="true"
> >
<testsuites> <testsuites>
<testsuite name="Unit"> <testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory> <directory suffix="Test.php">./tests/Unit</directory>
</testsuite> </testsuite>
<testsuite name="Feature"> <testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory> <directory suffix="Test.php">./tests/Feature</directory>
</testsuite> </testsuite>
</testsuites> </testsuites>
<coverage> <php>
<include> <env name="APP_ENV" value="testing"/>
<directory suffix=".php">./app</directory> <env name="BCRYPT_ROUNDS" value="4"/>
</include> <env name="CACHE_DRIVER" value="array"/>
</coverage> <!-- <env name="DB_CONNECTION" value="sqlite"/> -->
<php> <!-- <env name="DB_DATABASE" value=":memory:"/> -->
<env name="APP_ENV" value="testing"/> <env name="MAIL_MAILER" value="array"/>
<env name="BCRYPT_ROUNDS" value="4"/> <env name="QUEUE_CONNECTION" value="sync"/>
<env name="CACHE_DRIVER" value="array"/> <env name="SESSION_DRIVER" value="array"/>
<!-- <env name="DB_CONNECTION" value="sqlite"/> --> <env name="TELESCOPE_ENABLED" value="false"/>
<!-- <env name="DB_DATABASE" value=":memory:"/> --> </php>
<env name="MAIL_MAILER" value="array"/> <source>
<env name="QUEUE_CONNECTION" value="sync"/> <include>
<env name="SESSION_DRIVER" value="array"/> <directory suffix=".php">./app</directory>
<env name="TELESCOPE_ENABLED" value="false"/> </include>
</php> </source>
</phpunit> </phpunit>

View File

@ -9,10 +9,10 @@
<directory suffix="Test.php">./tests</directory> <directory suffix="Test.php">./tests</directory>
</testsuite> </testsuite>
</testsuites> </testsuites>
<coverage> <source>
<include> <include>
<directory suffix=".php">./app</directory> <directory suffix=".php">./app</directory>
<directory suffix=".php">./src</directory> <directory suffix=".php">./src</directory>
</include> </include>
</coverage> </source>
</phpunit> </phpunit>

View File

@ -1,5 +1,5 @@
Pest Testing Framework 2.18.0. Pest Testing Framework 2.18.1.
USAGE: pest <file> [options] USAGE: pest <file> [options]

View File

@ -1,3 +1,3 @@
Pest Testing Framework 2.18.0. Pest Testing Framework 2.18.1.