From f4d19c90d3059d6eacc0ec3bc8b8e3239eda1006 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Tue, 21 Mar 2023 13:42:10 +0000 Subject: [PATCH 1/9] chore: bumps dependencies --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index bbc508f0..33ef9749 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ "require": { "php": "^8.1.0", "brianium/paratest": "^7.1.2", - "nunomaduro/collision": "^7.2.0", + "nunomaduro/collision": "^7.3.1", "nunomaduro/termwind": "^1.15.1", "pestphp/pest-plugin": "^2.0.0", "pestphp/pest-plugin-arch": "^2.0.1", From 236a9bd7ce8927b1ce88a1810b5d5d9eedd7e75f Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Tue, 21 Mar 2023 13:42:21 +0000 Subject: [PATCH 2/9] chore: style changes --- src/Expectation.php | 2 +- src/Support/Arr.php | 2 +- src/Support/Reflection.php | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Expectation.php b/src/Expectation.php index 07b0d5d5..537883bb 100644 --- a/src/Expectation.php +++ b/src/Expectation.php @@ -64,7 +64,7 @@ final class Expectation */ public function and(mixed $value): Expectation { - return $value instanceof static ? $value : new self($value); + return $value instanceof self ? $value : new self($value); } /** diff --git a/src/Support/Arr.php b/src/Support/Arr.php index bd80ae56..aed6c5a7 100644 --- a/src/Support/Arr.php +++ b/src/Support/Arr.php @@ -73,7 +73,7 @@ final class Arr foreach ($array as $key => $value) { if (is_array($value) && $value !== []) { - $results = array_merge($results, static::dot($value, $prepend.$key.'.')); + $results = array_merge($results, self::dot($value, $prepend.$key.'.')); } else { $results[$prepend.$value] = $value; } diff --git a/src/Support/Reflection.php b/src/Support/Reflection.php index 14edd7ad..18a71aa6 100644 --- a/src/Support/Reflection.php +++ b/src/Support/Reflection.php @@ -42,7 +42,7 @@ final class Reflection } if (is_callable($method)) { - return static::bindCallable($method, $args); + return self::bindCallable($method, $args); } throw $exception; @@ -72,7 +72,7 @@ final class Reflection return $test instanceof \PHPUnit\Framework\TestCase ? Closure::fromCallable($callable)->bindTo($test)(...$test->providedData()) - : static::bindCallable($callable); + : self::bindCallable($callable); } /** From 26bb0b6eec0add4e6239b56d6d4922aa1899a2af Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Tue, 21 Mar 2023 13:42:10 +0000 Subject: [PATCH 3/9] chore: bumps dependencies From 48ae4bfc18fa15d50e9f4499c11e4d2ab4448cf1 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Tue, 21 Mar 2023 13:43:01 +0000 Subject: [PATCH 4/9] =?UTF-8?q?fix:=20description=20when=20using=20`?= =?UTF-8?q?=E3=81=B5=E3=81=8C`=20chars?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Support/Str.php | 2 +- tests/Unit/TestName.php | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/src/Support/Str.php b/src/Support/Str.php index 9ed75c1f..896710c3 100644 --- a/src/Support/Str.php +++ b/src/Support/Str.php @@ -61,7 +61,7 @@ final class Str { $code = self::PREFIX.str_replace(' ', '_', $code); - return (string) preg_replace('/[^A-Z_a-z0-9]/', '_', $code); + return (string) preg_replace('/[^\p{L}_0-9]/', '_', $code); } /** diff --git a/tests/Unit/TestName.php b/tests/Unit/TestName.php index 3f52e700..2d5ce4aa 100644 --- a/tests/Unit/TestName.php +++ b/tests/Unit/TestName.php @@ -11,3 +11,23 @@ it('may start with P', function (string $real, string $toBePrinted) { ['PPPackages\Foo', 'PPPackages\Foo'], ['PPPackages\Foo', 'PPPackages\Foo'], ]); + +$names = [ + 'ふが' => '__pest_evaluable_ふが', + 'ほげ' => 'ほげ', + '卜竹弓一十山' => '卜竹弓一十山', + '!p8VrB' => '!p8VrB', + '&xe6VeKWF#n4' => '&xe6VeKWF#n4', + '%%HurHUnw7zM!' => '%%HurHUnw7zM!', + 'rundeliekend' => 'rundeliekend', + 'g%%c!Jt9$fy#Kf' => 'g%%c!Jt9$fy#Kf', + 'NRs*Gz2@hmB$W$BPD%%b2U%3P%z%apnwSX' => 'NRs*Gz2@hmB$W$BPD%%b2U%3P%z%apnwSX', +]; + +foreach ($names as $name => $methodName) { + test($name) + ->expect(fn () => static::getLatestPrintableTestCaseMethodName()) + ->toBe($name) + ->and(fn () => $this->name()) + ->toBe($methodName); +} From ed3bb2634dbaf4c852d1da002c59b92df00e1a87 Mon Sep 17 00:00:00 2001 From: Fabio Ivona Date: Tue, 21 Mar 2023 15:15:38 +0100 Subject: [PATCH 5/9] using php documentation regex --- src/Support/Str.php | 3 ++- tests/Unit/TestName.php | 17 +++++++++-------- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/src/Support/Str.php b/src/Support/Str.php index 896710c3..21ee5c5b 100644 --- a/src/Support/Str.php +++ b/src/Support/Str.php @@ -61,7 +61,8 @@ final class Str { $code = self::PREFIX.str_replace(' ', '_', $code); - return (string) preg_replace('/[^\p{L}_0-9]/', '_', $code); + // sticks to PHP8.2 function naming rules https://www.php.net/manual/en/functions.user-defined.php + return (string) preg_replace('/[^a-zA-Z0-9_\x80-\xff]/', '_', $code); } /** diff --git a/tests/Unit/TestName.php b/tests/Unit/TestName.php index 2d5ce4aa..a7455d32 100644 --- a/tests/Unit/TestName.php +++ b/tests/Unit/TestName.php @@ -14,14 +14,15 @@ it('may start with P', function (string $real, string $toBePrinted) { $names = [ 'ふが' => '__pest_evaluable_ふが', - 'ほげ' => 'ほげ', - '卜竹弓一十山' => '卜竹弓一十山', - '!p8VrB' => '!p8VrB', - '&xe6VeKWF#n4' => '&xe6VeKWF#n4', - '%%HurHUnw7zM!' => '%%HurHUnw7zM!', - 'rundeliekend' => 'rundeliekend', - 'g%%c!Jt9$fy#Kf' => 'g%%c!Jt9$fy#Kf', - 'NRs*Gz2@hmB$W$BPD%%b2U%3P%z%apnwSX' => 'NRs*Gz2@hmB$W$BPD%%b2U%3P%z%apnwSX', + 'ほげ' => '__pest_evaluable_ほげ', + '卜竹弓一十山' => '__pest_evaluable_卜竹弓一十山', + '!p8VrB' => '__pest_evaluable__p8VrB', + '&xe6VeKWF#n4' => '__pest_evaluable__xe6VeKWF_n4', + '%%HurHUnw7zM!' => '__pest_evaluable___HurHUnw7zM_', + 'rundeliekend' => '__pest_evaluable_rundeliekend', + 'g%%c!Jt9$fy#Kf' => '__pest_evaluable_g__c_Jt9_fy_Kf', + 'NRs*Gz2@hmB$W$BPD%%b2U%3P%z%apnwSX' => '__pest_evaluable_NRs_Gz2_hmB_W_BPD__b2U_3P_z_apnwSX', + 'ÀĤ{¼' => '__pest_evaluable_ÀĤ_¼', ]; foreach ($names as $name => $methodName) { From e0f2919f62f0d8bd94272fd0bd9bcea12d36f059 Mon Sep 17 00:00:00 2001 From: Fabio Ivona Date: Tue, 21 Mar 2023 17:39:01 +0100 Subject: [PATCH 6/9] expand Str::evaluable test cases --- tests/Unit/TestName.php | 40 ++++++++++++++++++++++++++++++++++++++-- 1 file changed, 38 insertions(+), 2 deletions(-) diff --git a/tests/Unit/TestName.php b/tests/Unit/TestName.php index a7455d32..b7f91d54 100644 --- a/tests/Unit/TestName.php +++ b/tests/Unit/TestName.php @@ -13,16 +13,52 @@ it('may start with P', function (string $real, string $toBePrinted) { ]); $names = [ - 'ふが' => '__pest_evaluable_ふが', + 'ふ+が+' => '__pest_evaluable_ふ_が_', 'ほげ' => '__pest_evaluable_ほげ', '卜竹弓一十山' => '__pest_evaluable_卜竹弓一十山', + 'アゴデヸ' => '__pest_evaluable_アゴデヸ', '!p8VrB' => '__pest_evaluable__p8VrB', '&xe6VeKWF#n4' => '__pest_evaluable__xe6VeKWF_n4', '%%HurHUnw7zM!' => '__pest_evaluable___HurHUnw7zM_', 'rundeliekend' => '__pest_evaluable_rundeliekend', 'g%%c!Jt9$fy#Kf' => '__pest_evaluable_g__c_Jt9_fy_Kf', 'NRs*Gz2@hmB$W$BPD%%b2U%3P%z%apnwSX' => '__pest_evaluable_NRs_Gz2_hmB_W_BPD__b2U_3P_z_apnwSX', - 'ÀĤ{¼' => '__pest_evaluable_ÀĤ_¼', + 'ÀĤ{¼÷' => '__pest_evaluable_ÀĤ_¼÷', + 'ìèéàòç' => '__pest_evaluable_ìèéàòç', + 'زهراء المعادي' => '__pest_evaluable_زهراء_المعادي', + 'الجبيهه' => '__pest_evaluable_الجبيهه', + 'الظهران' => '__pest_evaluable_الظهران', + 'Каролин' => '__pest_evaluable_Каролин', + 'অ্যান্টার্কটিকা' => '__pest_evaluable_অ্যান্টার্কটিকা', + 'Frýdek-Místek"' => '__pest_evaluable_Frýdek_Místek_', + 'Allingåbro&' => '__pest_evaluable_Allingåbro_', + 'Κεντροαφρικανική Δημοκρατία' => '__pest_evaluable_Κεντροαφρικανική_Δημοκρατία', + 'آذربایجان غربی' => '__pest_evaluable_آذربایجان_غربی', + 'זימבבואה' => '__pest_evaluable_זימבבואה', + 'Belišće' => '__pest_evaluable_Belišće', + 'Գվատեմալա' => '__pest_evaluable_Գվատեմալա', + 'パプアニューギニア' => '__pest_evaluable_パプアニューギニア', + '富山県' => '__pest_evaluable_富山県', + 'Қарағанды' => '__pest_evaluable_Қарағанды', + 'Қостанай' => '__pest_evaluable_Қостанай', + '안양시 동안구' => '__pest_evaluable_안양시_동안구', + 'Itālija' => '__pest_evaluable_Itālija', + 'Honningsvåg' => '__pest_evaluable_Honningsvåg', + 'Águeda' => '__pest_evaluable_Águeda', + 'Râșcani' => '__pest_evaluable_Râșcani', + 'Năsăud' => '__pest_evaluable_Năsăud', + 'Орехово-Зуево' => '__pest_evaluable_Орехово_Зуево', + 'Čereňany' => '__pest_evaluable_Čereňany', + 'Moravče' => '__pest_evaluable_Moravče', + 'Šentjernej' => '__pest_evaluable_Šentjernej', + 'Врање' => '__pest_evaluable_Врање', + 'Крушевац' => '__pest_evaluable_Крушевац', + 'Åkersberga' => '__pest_evaluable_Åkersberga', + 'บอสเนียและเฮอร์เซโกวีนา' => '__pest_evaluable_บอสเนียและเฮอร์เซโกวีนา', + 'Birleşik Arap Emirlikleri' => '__pest_evaluable_Birleşik_Arap_Emirlikleri', + 'Німеччина' => '__pest_evaluable_Німеччина', + 'Nam Định' => '__pest_evaluable_Nam_Định', + '呼和浩特' => '__pest_evaluable_呼和浩特', ]; foreach ($names as $name => $methodName) { From bcd1503cade938853a55c1283b02b6b820ea0b69 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Tue, 21 Mar 2023 16:54:37 +0000 Subject: [PATCH 7/9] feat: "only" method --- composer.json | 1 + overrides/TextUI/TestSuiteFilterProcessor.php | 128 ++++++++++++++++++ src/Bootstrappers/BootOverrides.php | 1 + src/PendingCalls/TestCall.php | 11 ++ src/Plugins/Only.php | 61 +++++++++ 5 files changed, 202 insertions(+) create mode 100644 overrides/TextUI/TestSuiteFilterProcessor.php create mode 100644 src/Plugins/Only.php diff --git a/composer.json b/composer.json index 33ef9749..3685d4df 100644 --- a/composer.json +++ b/composer.json @@ -92,6 +92,7 @@ "Pest\\Plugins\\Environment", "Pest\\Plugins\\Help", "Pest\\Plugins\\Memory", + "Pest\\Plugins\\Only", "Pest\\Plugins\\Printer", "Pest\\Plugins\\ProcessIsolation", "Pest\\Plugins\\Profile", diff --git a/overrides/TextUI/TestSuiteFilterProcessor.php b/overrides/TextUI/TestSuiteFilterProcessor.php new file mode 100644 index 00000000..31ce5fe6 --- /dev/null +++ b/overrides/TextUI/TestSuiteFilterProcessor.php @@ -0,0 +1,128 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace PHPUnit\TextUI; + +use function array_map; +use Pest\Plugins\Only; +use PHPUnit\Event; +use PHPUnit\Framework\TestSuite; +use PHPUnit\Runner\Filter\Factory; +use PHPUnit\TextUI\Configuration\Configuration; +use PHPUnit\TextUI\Configuration\FilterNotConfiguredException; + +/** + * @internal This class is not covered by the backward compatibility promise for PHPUnit + */ +final class TestSuiteFilterProcessor +{ + private Factory $filterFactory; + + public function __construct(Factory $factory = new Factory) + { + $this->filterFactory = $factory; + } + + /** + * @throws Event\RuntimeException + * @throws FilterNotConfiguredException + */ + public function process(Configuration $configuration, TestSuite $suite): void + { + if (! $configuration->hasFilter() && + ! $configuration->hasGroups() && + ! $configuration->hasExcludeGroups() && + ! $configuration->hasTestsCovering() && + ! $configuration->hasTestsUsing() && + ! Only::isEnabled() + ) { + return; + } + + if ($configuration->hasExcludeGroups()) { + $this->filterFactory->addExcludeGroupFilter( + $configuration->excludeGroups() + ); + } + + if (Only::isEnabled()) { + $this->filterFactory->addIncludeGroupFilter(['__pest_only']); + } elseif ($configuration->hasGroups()) { + $this->filterFactory->addIncludeGroupFilter( + $configuration->groups() + ); + } + + if ($configuration->hasTestsCovering()) { + $this->filterFactory->addIncludeGroupFilter( + array_map( + static fn (string $name): string => '__phpunit_covers_'.$name, + $configuration->testsCovering() + ) + ); + } + + if ($configuration->hasTestsUsing()) { + $this->filterFactory->addIncludeGroupFilter( + array_map( + static fn (string $name): string => '__phpunit_uses_'.$name, + $configuration->testsUsing() + ) + ); + } + + if ($configuration->hasFilter()) { + $this->filterFactory->addNameFilter( + $configuration->filter() + ); + } + + $suite->injectFilter($this->filterFactory); + + Event\Facade::emitter()->testSuiteFiltered( + Event\TestSuite\TestSuiteBuilder::from($suite) + ); + } +} diff --git a/src/Bootstrappers/BootOverrides.php b/src/Bootstrappers/BootOverrides.php index d25f935d..e1489d7c 100644 --- a/src/Bootstrappers/BootOverrides.php +++ b/src/Bootstrappers/BootOverrides.php @@ -23,6 +23,7 @@ final class BootOverrides implements Bootstrapper 'Runner/TestSuiteLoader.php', 'TextUI/Command/WarmCodeCoverageCacheCommand.php', 'TextUI/Output/Default/ProgressPrinter/TestSkippedSubscriber.php', + 'TextUI/TestSuiteFilterProcessor.php', ]; /** diff --git a/src/PendingCalls/TestCall.php b/src/PendingCalls/TestCall.php index c793ef17..8b237ec7 100644 --- a/src/PendingCalls/TestCall.php +++ b/src/PendingCalls/TestCall.php @@ -10,6 +10,7 @@ use Pest\Factories\Covers\CoversClass; use Pest\Factories\Covers\CoversFunction; use Pest\Factories\Covers\CoversNothing; use Pest\Factories\TestCaseMethodFactory; +use Pest\Plugins\Only; use Pest\Support\Backtrace; use Pest\Support\Exporter; use Pest\Support\HigherOrderCallables; @@ -134,6 +135,16 @@ final class TestCall return $this; } + /** + * Filters the test suite by "only" tests. + */ + public function only(): self + { + Only::enable($this); + + return $this; + } + /** * Skips the current test. */ diff --git a/src/Plugins/Only.php b/src/Plugins/Only.php new file mode 100644 index 00000000..2ede1724 --- /dev/null +++ b/src/Plugins/Only.php @@ -0,0 +1,61 @@ +group('__pest_only'); + + $lockFile = self::TEMPORARY_FOLDER.DIRECTORY_SEPARATOR.'only.lock'; + + if (! file_exists($lockFile)) { + touch($lockFile); + } + } + + /** + * Checks if "only" mode is enabled. + */ + public static function isEnabled(): bool + { + $lockFile = self::TEMPORARY_FOLDER.DIRECTORY_SEPARATOR.'only.lock'; + + return file_exists($lockFile); + } +} From e1e4f8d884e7d6c40e8552b5818e171eb669ac9a Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Tue, 21 Mar 2023 16:57:07 +0000 Subject: [PATCH 8/9] chore: rebuilds snapshots --- src/Plugins/Only.php | 2 +- tests/.snapshots/success.txt | 48 +++++++++++++++++++++++++++++++++++- tests/Visual/Parallel.php | 2 +- 3 files changed, 49 insertions(+), 3 deletions(-) diff --git a/src/Plugins/Only.php b/src/Plugins/Only.php index 2ede1724..aa4556b8 100644 --- a/src/Plugins/Only.php +++ b/src/Plugins/Only.php @@ -29,7 +29,7 @@ final class Only implements Shutdownable public function shutdown(): void { $lockFile = self::TEMPORARY_FOLDER.DIRECTORY_SEPARATOR.'only.lock'; - + if (file_exists($lockFile)) { unlink($lockFile); } diff --git a/tests/.snapshots/success.txt b/tests/.snapshots/success.txt index 083ec696..217f831f 100644 --- a/tests/.snapshots/success.txt +++ b/tests/.snapshots/success.txt @@ -910,6 +910,52 @@ ✓ it may start with P with ('P\PPPackages\Foo', 'PPPackages\Foo') ✓ it may start with P with ('PPPackages\Foo', 'PPPackages\Foo') #1 ✓ it may start with P with ('PPPackages\Foo', 'PPPackages\Foo') #2 + ✓ ふ+が+ + ✓ ほげ + ✓ 卜竹弓一十山 + ✓ アゴデヸ + ✓ !p8VrB + ✓ &xe6VeKWF#n4 + ✓ %%HurHUnw7zM! + ✓ rundeliekend + ✓ g%%c!Jt9$fy#Kf + ✓ NRs*Gz2@hmB$W$BPD%%b2U%3P%z%apnwSX + ✓ ÀĤ{¼÷ + ✓ ìèéàòç + ✓ زهراء المعادي + ✓ الجبيهه + ✓ الظهران + ✓ Каролин + ✓ অ্যান্টার্কটিকা + ✓ Frýdek-Místek" + ✓ Allingåbro& + ✓ Κεντροαφρικανική Δημοκρατία + ✓ آذربایجان غربی + ✓ זימבבואה + ✓ Belišće + ✓ Գվատեմալա + ✓ パプアニューギニア + ✓ 富山県 + ✓ Қарағанды + ✓ Қостанай + ✓ 안양시 동안구 + ✓ Itālija + ✓ Honningsvåg + ✓ Águeda + ✓ Râșcani + ✓ Năsăud + ✓ Орехово-Зуево + ✓ Čereňany + ✓ Moravče + ✓ Šentjernej + ✓ Врање + ✓ Крушевац + ✓ Åkersberga + ✓ บอสเนียและเฮอร์เซโกวีนา + ✓ Birleşik Arap Emirlikleri + ✓ Німеччина + ✓ Nam Định + ✓ 呼和浩特 PASS Tests\Unit\TestSuite ✓ it does not allow to add the same test description twice @@ -944,4 +990,4 @@ PASS Tests\Visual\Version ✓ visual snapshot of help command output - Tests: 2 deprecated, 3 warnings, 4 incomplete, 1 notice, 4 todos, 12 skipped, 649 passed (1588 assertions) \ No newline at end of file + Tests: 2 deprecated, 3 warnings, 4 incomplete, 1 notice, 4 todos, 12 skipped, 695 passed (1680 assertions) \ No newline at end of file diff --git a/tests/Visual/Parallel.php b/tests/Visual/Parallel.php index 16ca7396..5c770e05 100644 --- a/tests/Visual/Parallel.php +++ b/tests/Visual/Parallel.php @@ -15,6 +15,6 @@ $run = function () { }; test('parallel', function () use ($run) { - expect($run())->toContain('Tests: 2 deprecated, 3 warnings, 4 incomplete, 1 notice, 4 todos, 9 skipped, 640 passed (1576 assertions)') + expect($run())->toContain('Tests: 2 deprecated, 3 warnings, 4 incomplete, 1 notice, 4 todos, 9 skipped, 686 passed (1668 assertions)') ->toContain('Parallel: 3 processes'); })->skip(PHP_OS_FAMILY === 'Windows'); From c34f649724609e5b6f9685e2723c38553997dab6 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Tue, 21 Mar 2023 17:04:03 +0000 Subject: [PATCH 9/9] release: v2.1.0 --- CHANGELOG.md | 8 ++++++++ src/Pest.php | 2 +- tests/.snapshots/help-command.txt | 2 +- tests/.snapshots/version-command.txt | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c8972013..811f5e15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ ## Unreleased +## [v2.1.0 (2023-03-21)](https://github.com/pestphp/pest/compare/v2.0.2...v2.1.0) + +### Added +- `only` test case method ([bcd1503](https://github.com/pestphp/pest/commit/bcd1503cade938853a55c1283b02b6b820ea0b69)) + +### Fixed +- Issues with different characters on test names ([715](https://github.com/pestphp/pest/pull/715)) + ## [v2.0.2 (2023-03-20)](https://github.com/pestphp/pest/compare/v2.0.1...v2.0.2) ### Fixed diff --git a/src/Pest.php b/src/Pest.php index d0fa2ff3..32978f6e 100644 --- a/src/Pest.php +++ b/src/Pest.php @@ -6,7 +6,7 @@ namespace Pest; function version(): string { - return '2.0.2'; + return '2.1.0'; } function testDirectory(string $file = ''): string diff --git a/tests/.snapshots/help-command.txt b/tests/.snapshots/help-command.txt index aa7cf29f..2ebc633d 100644 --- a/tests/.snapshots/help-command.txt +++ b/tests/.snapshots/help-command.txt @@ -1,5 +1,5 @@ - Pest Testing Framework 2.0.2. + Pest Testing Framework 2.1.0. USAGE: pest [options] diff --git a/tests/.snapshots/version-command.txt b/tests/.snapshots/version-command.txt index 0ad97038..a50a10ae 100644 --- a/tests/.snapshots/version-command.txt +++ b/tests/.snapshots/version-command.txt @@ -1,3 +1,3 @@ - Pest Testing Framework 2.0.2. + Pest Testing Framework 2.1.0.