Skip to content

Commit

Permalink
release: v2.16.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro committed Aug 29, 2023
1 parent 4313a1e commit 55b9266
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Pest.php
Expand Up @@ -6,7 +6,7 @@

function version(): string
{
return '2.16.0';
return '2.16.1';
}

function testDirectory(string $file = ''): string
Expand Down
@@ -1,5 +1,5 @@

Pest Testing Framework 2.16.0.
Pest Testing Framework 2.16.1.

USAGE: pest <file> [options]

Expand Down
@@ -1,3 +1,3 @@

Pest Testing Framework 2.16.0.
Pest Testing Framework 2.16.1.

13 changes: 12 additions & 1 deletion tests/.snapshots/success.txt
Expand Up @@ -638,6 +638,7 @@

PASS Tests\Features\Expect\toHaveCount
✓ pass
✓ failures with invalid type
✓ failures
✓ failures with message
✓ not failures
Expand Down Expand Up @@ -722,6 +723,13 @@
✓ failures
✓ failures with message
✓ failures with message and Any matcher
✓ not failures

PASS Tests\Features\Expect\toHaveSameSize
✓ failures with wrong type
✓ pass
✓ failures
✓ failures with message
✓ not failures

PASS Tests\Features\Expect\toHaveSnakeCaseKeys
Expand Down Expand Up @@ -1007,6 +1015,9 @@
✓ uses dataset with (1)
✓ uses dataset with (2)
✓ the right dataset is taken
✓ it can see datasets defined in Pest.php file with ('A')
✓ it can see datasets defined in Pest.php file with ('B')
✓ Pest.php dataset is taken

WARN Tests\Features\Skip
✓ it do not skips
Expand Down Expand Up @@ -1296,4 +1307,4 @@
WARN Tests\Visual\Version
- visual snapshot of help command output

Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 19 skipped, 916 passed (2190 assertions)
Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 19 skipped, 925 passed (2204 assertions)
2 changes: 1 addition & 1 deletion tests/Visual/Parallel.php
Expand Up @@ -16,7 +16,7 @@

test('parallel', function () use ($run) {
expect($run('--exclude-group=integration'))
->toContain('Tests: 1 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 15 skipped, 905 passed (2175 assertions)')
->toContain('Tests: 1 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 15 skipped, 914 passed (2189 assertions)')
->toContain('Parallel: 3 processes');
})->skipOnWindows();

Expand Down

0 comments on commit 55b9266

Please sign in to comment.