mirror of
https://github.com/pestphp/pest.git
synced 2026-03-10 01:37:21 +01:00
Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 74df53c72b | |||
| ee26457705 | |||
| 09e6a0944a | |||
| bdee46043a | |||
| 3e25168777 | |||
| 21b8507252 | |||
| d8e283777e |
@ -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
|
||||||
|
|||||||
@ -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>
|
||||||
|
|||||||
@ -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>
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
Pest Testing Framework 2.18.0.
|
Pest Testing Framework 2.18.1.
|
||||||
|
|
||||||
USAGE: pest <file> [options]
|
USAGE: pest <file> [options]
|
||||||
|
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
|
|
||||||
Pest Testing Framework 2.18.0.
|
Pest Testing Framework 2.18.1.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user