From 93223caa564fc5a807bcee4dbc3baf64fee56115 Mon Sep 17 00:00:00 2001 From: nuno maduro Date: Fri, 7 Aug 2026 03:00:19 +0100 Subject: [PATCH] chore: fixes ci --- composer.json | 1 + tests/Features/Tia/BranchShapes.php | 2 +- tests/Features/Tia/DefaultBranchResolution.php | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index cf9f602d..41e3d01c 100644 --- a/composer.json +++ b/composer.json @@ -71,6 +71,7 @@ "config": { "sort-packages": true, "preferred-install": "dist", + "process-timeout": 0, "allow-plugins": { "pestphp/pest-plugin": true } diff --git a/tests/Features/Tia/BranchShapes.php b/tests/Features/Tia/BranchShapes.php index 388a0052..d0e5a095 100644 --- a/tests/Features/Tia/BranchShapes.php +++ b/tests/Features/Tia/BranchShapes.php @@ -192,6 +192,6 @@ test('a directory with no repository at all still asks for git', function (): vo $result = $project->pest('--tia'); expect($result->exitCode)->toBe(1, $result->describe()) - ->and($result->output)->toContain('requires "git"') + ->and($result->output)->toContain('requires [git]') ->and($project->graphExists())->toBeFalse(); })->skipOnWindows(); diff --git a/tests/Features/Tia/DefaultBranchResolution.php b/tests/Features/Tia/DefaultBranchResolution.php index 424f708b..214c8cc8 100644 --- a/tests/Features/Tia/DefaultBranchResolution.php +++ b/tests/Features/Tia/DefaultBranchResolution.php @@ -175,7 +175,7 @@ test('tia still requires git', function (): void { $result = $project->pest('--tia'); - expect($result->output)->toContain('The feature [Tia mode[ requires [git].') + expect($result->output)->toContain('The feature [Tia mode] requires [git].') ->and($result->exitCode)->not->toBe(0); })->skipOnWindows();