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
+5 -3
View File
@@ -1,16 +1,18 @@
<?php
pest()->beforeAll(function () {
declare(strict_types=1);
pest()->beforeAll(function (): void {
expect($_SERVER['globalHook']->calls->beforeAll)
->toBe(0);
$_SERVER['globalHook']->calls->beforeAll++;
});
it('gets called before all tests 1', function () {
it('gets called before all tests 1', function (): void {
expect($_SERVER['globalHook']->calls->beforeAll)->toBe(1);
})->repeat(2);
it('gets called before all tests 2', function () {
it('gets called before all tests 2', function (): void {
expect($_SERVER['globalHook']->calls->beforeAll)->toBe(1);
});