Update PHPUnit test results cache with latest version and defect counts

This commit is contained in:
Jeppe Bundgaard
2026-06-03 18:19:45 +02:00
parent bcbc2481c3
commit 1e64bd63b8
2 changed files with 12 additions and 1 deletions
File diff suppressed because one or more lines are too long
@@ -84,6 +84,17 @@ it('wires lane-level self-serve toggles through lane APIs, guest payloads, and e
->and($edgeWorkspace)->toContain("(int)(\$selfServe['ready_lanes'] ?? 0) < (int)(\$selfServe['enabled_lanes'] ?? 0)"); ->and($edgeWorkspace)->toContain("(int)(\$selfServe['ready_lanes'] ?? 0) < (int)(\$selfServe['enabled_lanes'] ?? 0)");
}); });
it('sources guest lane product availability from the published v2 self-serve config before legacy tasks', function (): void {
$laneObject = file_get_contents(app_path('objects/department_lanes_o.php'));
expect($laneObject)->not->toBeFalse()
->and($laneObject)->toContain('getPublishedSelfServeLaneProducts')
->and($laneObject)->toContain('selfserve_config_versioning')
->and($laneObject)->toContain('getPublishedV2Config')
->and($laneObject)->toContain("\$taskLane !== 0 && \$taskLane !== \$laneId")
->and($laneObject)->toContain('department_selfserve_tasks_o::getLaneProducts');
});
it('wires self-serve config draft/publish/rollback lifecycle endpoints', function (): void { it('wires self-serve config draft/publish/rollback lifecycle endpoints', function (): void {
$configRoute = file_get_contents(app_path('routes/departmentSelfserveConfigVersionsRoute.php')); $configRoute = file_get_contents(app_path('routes/departmentSelfserveConfigVersionsRoute.php'));