create([ 'tenant_id' => (int) $tenant->getKey(), 'type' => 'provider.connection.check', 'status' => 'completed', 'outcome' => 'blocked', 'initiator_name' => 'System', 'context' => [ 'reason_code' => 'provider_connection_missing', ], ]); $this->actingAs($user); Bus::fake(); Filament::setTenant(null, true); assertNoOutboundHttp(function () use ($tenant, $run): void { $this->withSession([WorkspaceContext::SESSION_KEY => (int) $tenant->workspace_id]) ->get('/admin/operations') ->assertOk() ->assertSee('All'); $this->withSession([WorkspaceContext::SESSION_KEY => (int) $tenant->workspace_id]) ->get(route('admin.operations.view', ['run' => (int) $run->getKey()])) ->assertOk() ->assertSee('Operation run'); }); Bus::assertNothingDispatched(); });