diff --git a/CHANGELOG.md b/CHANGELOG.md index aafd406b..069625b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## Unreleased +## [v2.10.1 (2023-07-31)](https://github.com/pestphp/pest/compare/v2.10.0...v2.10.1) + +### Fixed + +- `not->toHaveSuffix` and `toHavePrefix` expectations ([#888](https://github.com/pestphp/pest/pull/888)) + ## [v2.10.0 (2023-07-31)](https://github.com/pestphp/pest/compare/v2.9.5...v2.10.0) ### Added diff --git a/src/Pest.php b/src/Pest.php index 97f66c21..322884d6 100644 --- a/src/Pest.php +++ b/src/Pest.php @@ -6,7 +6,7 @@ namespace Pest; function version(): string { - return '2.10.0'; + return '2.10.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 37c61192..b7c36edd 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.10.0. + Pest Testing Framework 2.10.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 51f0e3be..0d599238 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.10.0. + Pest Testing Framework 2.10.1. diff --git a/tests/.snapshots/success.txt b/tests/.snapshots/success.txt index 909ae0e6..9eeb752b 100644 --- a/tests/.snapshots/success.txt +++ b/tests/.snapshots/success.txt @@ -629,6 +629,12 @@ ✓ failures with custom message ✓ not failures + PASS Tests\Features\Expect\toHavePrefix + ✓ missing prefix + ✓ has prefix + ✓ opposite missing prefix + ✓ opposite has prefix + PASS Tests\Features\Expect\toHaveProperties ✓ pass ✓ failures @@ -642,6 +648,12 @@ ✓ failures with message and Any matcher ✓ not failures + PASS Tests\Features\Expect\toHaveSuffix + ✓ missing suffix + ✓ has suffix + ✓ opposite missing suffix + ✓ opposite has suffix + PASS Tests\Features\Expect\toMatch ✓ pass ✓ failures @@ -1174,4 +1186,4 @@ WARN Tests\Visual\Version - visual snapshot of help command output - Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 19 skipped, 830 passed (1927 assertions) \ No newline at end of file + Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 19 skipped, 838 passed (1939 assertions) \ No newline at end of file diff --git a/tests/Visual/Parallel.php b/tests/Visual/Parallel.php index a8a69a34..89c3a9a1 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, 819 passed (1912 assertions)') + ->toContain('Tests: 1 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 15 skipped, 827 passed (1924 assertions)') ->toContain('Parallel: 3 processes'); })->skipOnWindows();