diff --git a/composer.json b/composer.json index 94381b80..322739ad 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ "php": "^8.2.0", "brianium/paratest": "^7.5.4", "nunomaduro/collision": "^8.4.0", - "nunomaduro/termwind": "^2.0.1", + "nunomaduro/termwind": "^2.1.0", "pestphp/pest-plugin": "^3.0.0", "pestphp/pest-plugin-arch": "^3.0.0", "pestphp/pest-plugin-mutate": "^3.0.0", diff --git a/src/PendingCalls/TestCall.php b/src/PendingCalls/TestCall.php index 6e461dc2..c2bd365c 100644 --- a/src/PendingCalls/TestCall.php +++ b/src/PendingCalls/TestCall.php @@ -10,7 +10,6 @@ use Pest\Exceptions\TestDescriptionMissing; use Pest\Factories\Attribute; use Pest\Factories\TestCaseMethodFactory; use Pest\Mutate\Contracts\Configuration; -use Pest\Mutate\Decorators\TestCallDecorator as MutationTestCallDecorator; use Pest\Mutate\Repositories\ConfigurationRepository; use Pest\PendingCalls\Concerns\Describable; use Pest\Plugins\Only; @@ -666,14 +665,6 @@ final class TestCall return $this; } - /** - * Mutates the test. - */ - public function mutate(string $profile = 'default'): self|MutationTestCallDecorator - { - return (new MutationTestCallDecorator($this))->mutate($profile); - } - /** * Creates the Call. */ diff --git a/tests/Visual/Parallel.php b/tests/Visual/Parallel.php index 6d1fc4c5..3ca89d4e 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: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 17 todos, 28 skipped, 1091 passed (2624 assertions)') + ->toContain('Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 17 todos, 19 skipped, 1081 passed (2600 assertions)') ->toContain('Parallel: 3 processes'); })->skipOnWindows();