fix: package lock fingerprint

This commit is contained in:
nuno maduro
2026-07-18 01:10:01 +01:00
parent 9e79e491e2
commit 820fa08313
237 changed files with 2409 additions and 2100 deletions
+3 -2
View File
@@ -9,7 +9,7 @@ function normalize_windows_os_output(string $text): string
return str_replace('\\', '/', $text);
}
test('visual snapshot of team city', function (string $testFile) {
test('visual snapshot of team city', function (string $testFile): void {
$testsPath = dirname(__DIR__)."/.tests/$testFile";
$snapshot = implode(DIRECTORY_SEPARATOR, [
@@ -18,7 +18,7 @@ test('visual snapshot of team city', function (string $testFile) {
"$testFile.inc",
]);
$output = function () use ($testsPath) {
$output = function () use ($testsPath): string {
$process = (new Process(
['php', 'bin/pest', '--teamcity', $testsPath],
dirname(__DIR__, levels: 2),
@@ -28,6 +28,7 @@ test('visual snapshot of team city', function (string $testFile) {
'PARATEST' => 0,
'COLLISION_IGNORE_DURATION' => 'true',
'FLOW_ID' => '1234',
'PAO_DISABLE' => '1',
],
));