active()->create([ 'workspace_id' => (int) $tenant->workspace_id, ]); $snapshot = BaselineSnapshot::factory()->incomplete(BaselineReasonCodes::SNAPSHOT_CAPTURE_FAILED)->create([ 'workspace_id' => (int) $tenant->workspace_id, 'baseline_profile_id' => (int) $profile->getKey(), ]); $run = OperationRun::factory()->create([ 'tenant_id' => (int) $tenant->getKey(), 'workspace_id' => (int) $tenant->workspace_id, 'type' => 'baseline_capture', 'status' => 'completed', 'outcome' => 'failed', 'context' => [ 'baseline_profile_id' => (int) $profile->getKey(), 'baseline_snapshot_id' => (int) $snapshot->getKey(), 'result' => [ 'snapshot_id' => (int) $snapshot->getKey(), 'snapshot_lifecycle' => 'incomplete', ], 'reason_code' => BaselineReasonCodes::SNAPSHOT_CAPTURE_FAILED, ], 'failure_summary' => [ ['reason_code' => BaselineReasonCodes::SNAPSHOT_CAPTURE_FAILED, 'message' => 'Snapshot capture stopped after persistence failed.'], ], 'completed_at' => now(), ]); Filament::setTenant(null, true); $this->withSession([WorkspaceContext::SESSION_KEY => (int) $tenant->workspace_id]); session([WorkspaceContext::SESSION_KEY => (int) $tenant->workspace_id]); Livewire::actingAs($user) ->test(TenantlessOperationRunViewer::class, ['run' => $run]) ->assertSee('Outcome') ->assertSee('Artifact truth') ->assertSee('Execution failed') ->assertSee('Artifact not usable') ->assertSee('Artifact next step') ->assertSee('Inspect the related capture diagnostics before using this snapshot'); });