From 55b92666482b7d4320b7869c4eea7333d35c5631 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Tue, 29 Aug 2023 10:30:36 +0100 Subject: [PATCH] release: v2.16.1 --- src/Pest.php | 2 +- .../visual_snapshot_of_help_command_output.snap | 2 +- .../visual_snapshot_of_help_command_output.snap | 2 +- tests/.snapshots/success.txt | 13 ++++++++++++- tests/Visual/Parallel.php | 2 +- 5 files changed, 16 insertions(+), 5 deletions(-) diff --git a/src/Pest.php b/src/Pest.php index 9085bcbe..43b88c93 100644 --- a/src/Pest.php +++ b/src/Pest.php @@ -6,7 +6,7 @@ namespace Pest; function version(): string { - return '2.16.0'; + return '2.16.1'; } function testDirectory(string $file = ''): string diff --git a/tests/.pest/snapshots/Visual/Help/visual_snapshot_of_help_command_output.snap b/tests/.pest/snapshots/Visual/Help/visual_snapshot_of_help_command_output.snap index 5f9cd50f..721cb3e0 100644 --- a/tests/.pest/snapshots/Visual/Help/visual_snapshot_of_help_command_output.snap +++ b/tests/.pest/snapshots/Visual/Help/visual_snapshot_of_help_command_output.snap @@ -1,5 +1,5 @@ - Pest Testing Framework 2.16.0. + Pest Testing Framework 2.16.1. USAGE: pest [options] diff --git a/tests/.pest/snapshots/Visual/Version/visual_snapshot_of_help_command_output.snap b/tests/.pest/snapshots/Visual/Version/visual_snapshot_of_help_command_output.snap index 52033f2f..a2c7fd28 100644 --- a/tests/.pest/snapshots/Visual/Version/visual_snapshot_of_help_command_output.snap +++ b/tests/.pest/snapshots/Visual/Version/visual_snapshot_of_help_command_output.snap @@ -1,3 +1,3 @@ - Pest Testing Framework 2.16.0. + Pest Testing Framework 2.16.1. diff --git a/tests/.snapshots/success.txt b/tests/.snapshots/success.txt index f5b63c97..c9f82020 100644 --- a/tests/.snapshots/success.txt +++ b/tests/.snapshots/success.txt @@ -638,6 +638,7 @@ PASS Tests\Features\Expect\toHaveCount ✓ pass + ✓ failures with invalid type ✓ failures ✓ failures with message ✓ not failures @@ -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 @@ -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 @@ -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) \ No newline at end of file + Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 19 skipped, 925 passed (2204 assertions) \ No newline at end of file diff --git a/tests/Visual/Parallel.php b/tests/Visual/Parallel.php index aae0daca..173f9dcf 100644 --- a/tests/Visual/Parallel.php +++ b/tests/Visual/Parallel.php @@ -16,7 +16,7 @@ $run = function () { 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();