Skip to content

Commit

Permalink
release: v3.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro committed Sep 10, 2024
1 parent 49f1552 commit ea72461
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/Pest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

function version(): string
{
return '3.0.1';
return '3.0.3';
}

function testDirectory(string $file = ''): string
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

Pest Testing Framework 3.0.1.
Pest Testing Framework 3.0.3.

USAGE: pest <file> [options]

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

Pest Testing Framework 3.0.1.
Pest Testing Framework 3.0.3.

2 changes: 1 addition & 1 deletion tests/.snapshots/success.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1381,7 +1381,7 @@
✓ it proxies to uses call

PASS Tests\Unit\Configuration\Theme
✓ it creates a theme instance
✓ it creates a printer instance

PASS Tests\Unit\Console\Help
✓ it outputs the help information when --help is used
Expand Down
6 changes: 3 additions & 3 deletions tests/Unit/Configuration/Theme.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

it('creates a theme instance', function () {
$theme = pest()->theme();
it('creates a printer instance', function () {
$theme = pest()->printer();

expect($theme)->toBeInstanceOf(Pest\Configuration\Theme::class);
expect($theme)->toBeInstanceOf(Pest\Configuration\Printer::class);
});

0 comments on commit ea72461

Please sign in to comment.