release: v3.0.3

This commit is contained in:
Nuno Maduro
2024-09-10 22:29:09 +01:00
parent 49f15521e0
commit ea72461f1b
5 changed files with 7 additions and 7 deletions

View File

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

View File

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

View File

@ -1,3 +1,3 @@
Pest Testing Framework 3.0.1. Pest Testing Framework 3.0.3.

View File

@ -1381,7 +1381,7 @@
✓ it proxies to uses call ✓ it proxies to uses call
PASS Tests\Unit\Configuration\Theme PASS Tests\Unit\Configuration\Theme
✓ it creates a theme instance ✓ it creates a printer instance
PASS Tests\Unit\Console\Help PASS Tests\Unit\Console\Help
✓ it outputs the help information when --help is used ✓ it outputs the help information when --help is used

View File

@ -1,7 +1,7 @@
<?php <?php
it('creates a theme instance', function () { it('creates a printer instance', function () {
$theme = pest()->theme(); $theme = pest()->printer();
expect($theme)->toBeInstanceOf(Pest\Configuration\Theme::class); expect($theme)->toBeInstanceOf(Pest\Configuration\Printer::class);
}); });