RUN  v4.1.9 /workspace/niko/agent-platform/frontend Coverage enabled with v8 (node:335) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) (node:377) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) (node:389) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) (node:342) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) (node:367) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) (node:374) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) (node:354) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) (node:376) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) (node:360) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) (node:348) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) (node:336) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/layers/__tests__/L2W/coordinator.test.ts > createCoordinator > returns an object with useCoordinator 38ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > resolveEndpointTemplate > replaces a single token in the template 18ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > resolveEndpointTemplate > replaces multiple tokens and removes used params 3ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > resolveEndpointTemplate > returns url unchanged when no tokens exist 2ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > resolveEndpointTemplate > throws when a token is missing from params 7ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > resolveEndpointTemplate > throws when one of multiple tokens is missing 2ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > createEntityHooks > returns EntityHooks with required shape 3ms βœ“ src/layers/__tests__/L1/SseConnectionState.test.tsx > SseConnectionState β€” state machine > initial state: reconnecting β†’ connected > starts in reconnecting and transitions to connected on onopen 195ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” inactive state (no crud) > activeCrud is null when routeContext has no crud 135ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” inactive state (no crud) > activeCrud is null when routeContext.crud is undefined 14ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” inactive state (no crud) > fieldPolicy is empty when inactive 41ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” inactive state (no crud) > formModel is defaults when inactive 12ms βœ“ src/layers/__tests__/L1/ReconnectRefresh.test.tsx > ReconnectRefresh > DoD-3: initial mount does NOT invalidate > first onopen does not call invalidateQueries 124ms βœ“ src/layers/__tests__/L1/ReconnectRefresh.test.tsx > ReconnectRefresh > DoD-4/DoD-5: 1 onerror + onopen triggers invalidate after wasEverConnected > invalidates on reconnect onopen after an onerror on the established connection 31ms βœ“ src/layers/__tests__/L1/ReconnectRefresh.test.tsx > ReconnectRefresh > DoD-4: 4+ onerrors during initial mount + onopen = NO invalidate > no invalidate when errors happen before first successful connection 36ms stderr | src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” inactive state (no crud) > submit is callable even when inactive (no-op) An update to TestComponent inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to TestComponent inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to TestComponent inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useEntityList > returns ListResult shape with hasMore and totalEstimate when API responds with data array 205ms βœ“ src/layers/__tests__/L1/SseConnectionState.test.tsx > SseConnectionState β€” state machine > connection lost after 5 onerrors > sets connectionState:lost after 5 consecutive failures 28ms βœ“ src/layers/__tests__/L1/SseConnectionState.test.tsx > SseConnectionState β€” state machine > reconnecting state on 1–4 onerrors > stays in reconnecting after 4 consecutive onerrors 36ms βœ“ src/layers/__tests__/L1/SseConnectionState.test.tsx > SseConnectionState β€” state machine > reconnect() resets failureCount and state > reconnect() moves from lost back to reconnecting and resets backoff 25ms βœ“ src/layers/__tests__/L1/SseConnectionState.test.tsx > SseConnectionState β€” state machine > heartbeat timeout triggers lost state > transitions to lost after 30s without heartbeat 23ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” inactive state (no crud) > bridge starts clean when inactive 42ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” inactive state (no crud) > submit is callable even when inactive (no-op) 26ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” owner isolation > activeCrud is null when routeContext.crud.owner != config.owner 19ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” owner isolation > activeCrud is populated when owner matches 27ms βœ“ src/layers/__tests__/L1/RefCountIntegration.test.tsx > RefCount Integration > Mount -> refCount=1 -> staleTime Infinity > useEntityList sees staleTime Infinity when refCount > 0 267ms βœ“ src/layers/__tests__/L1/ReconnectRefresh.test.tsx > ReconnectRefresh > DoD-5: flag cycle > cycles: onerrorβ†’onopen(invalidate)β†’onerrorβ†’onopen(invalidate)β†’onopen(no invalidate) 43ms βœ“ src/layers/__tests__/L1/ReconnectRefresh.test.tsx > ReconnectRefresh > DoD-6: manual reconnect in lost state triggers invalidate > reconnect from lost state triggers invalidate when flag is true 42ms βœ“ src/layers/__tests__/L1/ReconnectRefresh.test.tsx > ReconnectRefresh > DoD-7: zombie callback β€” unmount prevents invalidate > does not invalidate when onopen fires after unmount 21ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useEntityList > filters out pending deleted entities 88ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useEntityList > uses defaultListQuery when no params provided 61ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useEntityList > resolves endpoint template with params and strips used tokens 16ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” owner isolation > activeCrud includes prefix when provided 18ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” owner isolation > owner isolation works for edit mode 13ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” add flow > formModel initialized with defaults 15ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” add flow > fieldPolicy uses add mode 22ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” add flow > activeCrud has mode add 11ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” add flow > submit calls mutation.create with toCreate(formModel) 25ms βœ“ src/layers/__tests__/L1/SseConnectionState.test.tsx > SseConnectionState β€” state machine > heartbeat timeout triggers lost state > heartbeat timeout β†’ reconnecting with backoff 28ms βœ“ src/layers/__tests__/L1/SseConnectionState.test.tsx > SseConnectionState β€” state machine > heartbeat timeout triggers lost state > heartbeat events prevent lost state (35s with heartbeat at 20s does NOT trigger lost) 30ms βœ“ src/layers/__tests__/L1/SseConnectionState.test.tsx > SseConnectionState β€” state machine > 60s lost auto-retry > retries after 60s in lost state and schedules next retry on failure 24ms βœ“ src/layers/__tests__/L1/SseConnectionState.test.tsx > SseConnectionState β€” state machine > unmount cancels timers > cancels lostRetryTimeout and closes EventSource on unmount in lost state 28ms βœ“ src/layers/__tests__/L1/RefCountIntegration.test.tsx > RefCount Integration > Unmount -> refCount=0 -> staleTime 120_000 > after unmount, refCount drops to 0 and staleTime falls back to sseMode value 116ms βœ“ src/layers/__tests__/L1/RefCountIntegration.test.tsx > RefCount Integration > Two components, same queryKey -> refCount=2 > both subscriptions contribute to refCount, both become 0 only after both unmount 21ms βœ“ src/layers/__tests__/L1/RefCountIntegration.test.tsx > RefCount Integration > Two components, different queryKey > different filters get independent refCounts 10ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” add flow > bridge.pending is true after submit 17ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” add flow > submit uses the latest formModel via setFormModel 16ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” edit flow > formModel populated from entity detail 9ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” edit flow > fieldPolicy uses edit mode 8ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” edit flow > activeCrud has mode edit 9ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” edit flow > submit calls mutation.update with id and toUpdate(formModel) 16ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” edit flow > detail not yet loaded shows formModel as defaults 23ms βœ“ src/layers/__tests__/L1/SseConnectionState.test.tsx > SseConnectionState β€” state machine > per-subscription heartbeat isolation > two hook instances do not share heartbeat state 34ms βœ“ src/layers/__tests__/L1/SseConnectionState.test.tsx > SseConnectionState β€” state machine > Phase 3 fix: clearLostRetry() on every open() β€” no duplicate 60s timers > after 60s lost retry fires, open() clears the stale timer and starts fresh backoff cycle 25ms βœ“ src/layers/__tests__/L1/SseConnectionState.test.tsx > SseConnectionState β€” state machine > Phase 3 fix: onopen resets heartbeat timestamp to prevent premature timeout > onopen resets heartbeat timestamp so heartbeat does not trigger within 10s of reconnect 22ms βœ“ src/layers/__tests__/L1/SseConnectionState.test.tsx > SseConnectionState β€” state machine > Phase 3 fix: pendingTimeouts cleared on lost β€” stale reconnecting timers do not override lost > after 5 rapid onerrors trigger lost, stale backoff timers do NOT fire and override lost state 20ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useEntityList > uses staleTime 0 when queryMode is live 88ms stderr | src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator failure path > submit does not throw when called without active crud An update to TestComponent inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to TestComponent inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to TestComponent inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act βœ“ src/layers/__tests__/L1/RefCountIntegration.test.tsx > RefCount Integration > Race condition: refCount 0->1 cancels ongoing refetch > calls cancelQueries when refCount transitions 0->1 mid-refetch 46ms βœ“ src/layers/__tests__/L1/RefCountIntegration.test.tsx > RefCount Integration > sseMode + refCount combinations > sseMode true, refCount 0 -> staleTime 120_000 91ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator lifecycle transitions > handles transition from add β†’ inactive β†’ edit cleanly 29ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator lifecycle transitions > closeIntent resets on mode change 34ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator failure path > failure is null initially 12ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator failure path > bridge dirty stays true when pending resets (failure simulation) 11ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator failure path > submit does not throw when called without active crud 30ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useEntityList > uses default staleTime when queryMode is cache 81ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useEntityList > returns hasMore true from API meta 70ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator failure path > activeCrud remains populated after submit (branch not closed) 24ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator failure path > failure is null after submit when no sync error occurs 13ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator failure path > failure is set when mutation resolves with isError=true 26ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator closeIntent > closeIntent is null initially 19ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator closeIntent > cancel() sets closeIntent to cancel 21ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator updateField and setFormModel > setFormModel updates snapshot.formModel 17ms βœ“ src/layers/__tests__/L1/SseConnectionState.test.tsx > SseConnectionState β€” state machine > Phase 3 fix: clearLostRetry() in reconnecting path β€” stale lost timer does not override reconnecting > reconnect() clears stale lost timer and stays connected past the 60s window 27ms βœ“ src/layers/__tests__/L1/SseConnectionState.test.tsx > SseConnectionState β€” state machine > DoD-4: backoff survives re-render (normalizedRef fix) > failureCount persists across re-renders and retry fires on schedule 29ms βœ“ src/layers/__tests__/L1/RefCountIntegration.test.tsx > RefCount Integration > sseMode + refCount combinations > sseMode true, refCount > 0 -> staleTime Infinity 101ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useEntityList > handles totalEstimate -1 as unknown count 71ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useEntityList > falls back safely when API meta is missing 67ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator updateField and setFormModel > updateField updates a single field and marks dirty 12ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator updateField and setFormModel > updateField preserves other fields 17ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator snapshot type contract (compile-time) > snapshot has all required CoordinatorSnapshot fields 21ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator snapshot type contract (compile-time) > result exposes updateField, setFormModel, cancel 14ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” delete state machine > deleteState is null on collection route 11ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” delete state machine > deleteState is null on collection route even with crud 12ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” delete state machine > deleteState is non-null on detail route 9ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” delete state machine > requestDelete sets showConfirm to true 8ms βœ“ src/layers/__tests__/L1/RefCountIntegration.test.tsx > RefCount Integration > sseMode + refCount combinations > sseMode false/undef, refCount 0 -> staleTime undefined (global default) 90ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useEntityDetail > returns DetailResult shape on successful fetch 80ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useEntityDetail > is skipped when id is empty 10ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useMutation > returns MutationHandle shape with isPending and callable methods 21ms βœ“ src/layers/__tests__/L1/RefCountIntegration.test.tsx > RefCount Integration > sseMode + refCount combinations > sseMode false/undef, refCount > 0 -> staleTime Infinity 106ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” delete state machine > requestDelete clears previous delete errors 38ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” delete state machine > cancelDelete sets showConfirm to false 38ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” delete state machine > cancelDelete does not call mutation.remove 37ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useMutation > update receives id as first argument and sends Idempotency-Key header 100ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useMutation > update does not trigger cache invalidation 44ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useMutation > create triggers cache invalidation with Idempotency-Key header 28ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” delete state machine > confirmDelete calls mutation.remove with routeContext.id 39ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” delete state machine > confirmDelete closes showConfirm and clears delete error before calling remove 26ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” delete state machine > confirmDelete is a no-op on collection route 11ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” delete state machine > deleteState.isPending is false when delete not requested 23ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” delete state machine > deleteState.isPending reflects mutation.isPending during active delete 19ms βœ“ src/layers/__tests__/L1/RefCountIntegration.test.tsx > RefCount Integration > useEntityDetail refCount-aware staleTime > detail query sees staleTime Infinity when subscription is active for same entity 122ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useMutation > create resolves endpoint template in mutationFn 101ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” delete state machine > deleteState.isPending becomes false after delete completes 41ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” delete state machine > extracts error message from response.data.error 18ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” delete state machine > falls back to error.message when response.data is absent 20ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useMutation > create resolves endpoint template using createPathParams from contract 56ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useMutation > create with pipelines-like contract uses context to build URL /projects/{id}/pipelines 25ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useMutation > create resolves template from context when body lacks the token field 20ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useMutation > create isolates context between rapid successive calls (no ref race) 15ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” delete state machine > falls back to String(err) when response.data.error and message are both missing 83ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” delete state machine > falls back to default string when error is null 14ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” delete state machine > successful delete clears error state 14ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” delete state machine > error remains null after successful delete (was null before) 12ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” entitySelectData resolution > entitySelectData is empty when no entitySelectSources configured 9ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” entitySelectData resolution > resolves entity-select options from L1 useEntityList 39ms βœ“ src/layers/__tests__/L1/RefCountIntegration.test.tsx > RefCount Integration > useEntityDetail refCount-aware staleTime > detail query sees staleTime undefined when no subscription 117ms βœ“ src/layers/__tests__/L1/RefCountIntegration.test.tsx > RefCount Integration > Per-queryKey isolation (DoD-7) > two different queryKeys do not share refCount 32ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useMutation > offline create adds to outbox without calling API 41ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useMutation > offline update adds to outbox without calling API 44ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useMutation > offline remove adds to pendingDeleteMap, cache, and outbox without API call 24ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useMutation > remove does not trigger cache invalidation 14ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useMutation > remove onSuccess performs deterministic cache cleanup across all same-path entries 24ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useMutation > remove onSuccess cache cleanup removes entity from detail cache entry 20ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useMutation > isPending reflects combined mutation state 17ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useSubscription > shape smoke > returns SubscriptionHandle with correct shape 14ms βœ“ src/layers/__tests__/L2W/coordinator.test.ts > useCoordinator β€” entitySelectData resolution > uses default idField and nameField when not specified 12ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useSubscription > connection-lost after 5 failures > sets connectionState:lost after 5 consecutive failures 30ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useSubscription > reconnect resets the state > reconnect is callable and triggers a new connection attempt 14ms βœ“ src/layers/__tests__/L1/entityHooks.test.tsx > useSubscription > SSE deleted cleanup > removes pendingDelete entry on entity.deleted event 31ms stderr | src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > rendering states > renders loading state when isLoading is true ⚠️ React Router Future Flag Warning: React Router will begin wrapping state updates in `React.startTransition` in v7. You can use the `v7_startTransition` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_starttransition. ⚠️ React Router Future Flag Warning: Relative route resolution within Splat routes is changing in v7. You can use the `v7_relativeSplatPath` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_relativesplatpath. βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > rendering states > renders loading state when isLoading is true 647ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > rendering states > renders error state when error is present 16ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > rendering states > renders empty state when data is empty 22ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > rendering states > renders data table when data is present 150ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > rendering states > renders column headers from config 224ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > wiring > renders add button when createTarget is set 140ms stderr | src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > rendering states > renders loading state when isLoading is true ⚠️ React Router Future Flag Warning: React Router will begin wrapping state updates in `React.startTransition` in v7. You can use the `v7_startTransition` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_starttransition. ⚠️ React Router Future Flag Warning: Relative route resolution within Splat routes is changing in v7. You can use the `v7_relativeSplatPath` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_relativesplatpath. βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > wiring > renders custom add button label from config.createLabel 165ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > rendering states > renders loading state when isLoading is true 390ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > rendering states > renders error state when error is present 31ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > wiring > renders default add button label when createLabel is not set 115ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > wiring > calls navigate with createTarget when add button clicked 205ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > wiring > row click calls navigate with rowTarget and row id 75ms stderr | src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > row identity > uses resolveIdOf result for row key and data-testid ⚠️ React Router Future Flag Warning: React Router will begin wrapping state updates in `React.startTransition` in v7. You can use the `v7_startTransition` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_starttransition. ⚠️ React Router Future Flag Warning: Relative route resolution within Splat routes is changing in v7. You can use the `v7_relativeSplatPath` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_relativesplatpath. βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > wiring > does not render add button when createTarget is not set (no fallback) 45ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > wiring > add button is not clickable when createTarget is not set 198ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > row identity > uses resolveIdOf result for row key and data-testid 636ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > rendering states > renders empty state when entity is null 65ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > wiring > row click uses derived default when rowTarget is not set 92ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > wiring > row click uses rowTargetOverride when provided 47ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > sort > sets default sort in URL on initial hydration 31ms stderr | src/shared/components/CrudReadCard.test.tsx > CrudReadCard > 1. loading shows skeleton header + skeleton card, no buttons rendered ⚠️ React Router Future Flag Warning: React Router will begin wrapping state updates in `React.startTransition` in v7. You can use the `v7_startTransition` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_starttransition. ⚠️ React Router Future Flag Warning: Relative route resolution within Splat routes is changing in v7. You can use the `v7_relativeSplatPath` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_relativesplatpath. βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > row identity > falls back to row.id when resolveIdOf returns null 109ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > row identity > falls back to empty string when no id field and resolveIdOf returns null 140ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > rendering states > renders detail content via CrudReadCard with fields from readGrouping 690ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > sort > shows sort indicator on active sort column 89ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > SSE > shows connection-lost banner with reconnect when SSE enabled and connection lost 137ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > sort > cycles sort on header click: none -> asc -> desc -> none 281ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > sort > switches to new column asc when different column is clicked 69ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > rendering states > renders field values correctly via MetadataCard 229ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > SSE > shows data table alongside SSE connection-lost banner (preserving cached data) 201ms βœ“ src/shared/components/CrudReadCard.test.tsx > CrudReadCard > 1. loading shows skeleton header + skeleton card, no buttons rendered 880ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > SSE > reconnect button calls sse.reconnect 139ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > SSE > renders table normally when SSE enabled and connection is live 34ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > sort > sorts data by active sort field asc 89ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > sort > sorts data by active sort field desc 64ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > rendering states > uses default grouping when readGrouping is not set 225ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > SSE > renders table normally when SSE is not enabled 101ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > states > shows error state 59ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > sort > places null/undefined values last in asc sort 181ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > sort > sorts numbers numerically 24ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > sort > sorts strings case-insensitively 34ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > sort > does not render sort indicator on non-sortable columns 30ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > states > shows loading state 49ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > states > shows empty state when no data and not loading 33ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > overrides > renders custom loading fragment from overrides 13ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > overrides > renders custom empty fragment from overrides 15ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > overrides > renders custom error fragment from overrides 15ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > overrides > wraps content in layoutWrapper from overrides 49ms βœ“ src/shared/components/CrudReadCard.test.tsx > CrudReadCard > 2. error shows "Failed to load" + Retry 605ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > wiring > renders edit button when edit target is set 256ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > states > shows filter-empty state when data is empty and filters are active 73ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > states > filter-empty state shows clear filters button 36ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > states > shows regular empty when no filters are active and data empty 44ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > rendering > renders nothing when activeCrud is null 347ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > overrides > uses label overrides for column headers 69ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > overrides > hides columns specified in overrides 40ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > states > error takes priority over loading 41ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > add button > renders add button in header when createTarget is set 63ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > wiring > calls navigate with edit target when edit button clicked 220ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > wiring > does not render edit button when actionTargets.edit is not set 49ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > filter-empty state > shows filter-empty when hasActiveFilters is true and data is empty 86ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > filter-empty state > shows regular empty when hasActiveFilters is false and data empty 92ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > add button > does not render add button when createTarget is not set (no fallback) 46ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > row click > navigates via rowTargetOverride on click when override is set 63ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > filter-empty state > shows clear filters button in filter-empty state when onClearFilters provided 22ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > filter-empty state > does not show filter-empty when data is not empty 39ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > render contract > calls render for each cell 39ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > wiring > edit button navigates to configured target when actionTargets.edit is set 136ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > row click > rowTargetOverride takes precedence over rowTarget 46ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > row click > navigates to derived default pathname/id when no rowTarget and no override 56ms stderr | src/layers/__tests__/L2R/Crud.test.tsx > Crud slot β€” route handoff > cancel > navigates to cancelTarget when Cancel is clicked ⚠️ React Router Future Flag Warning: React Router will begin wrapping state updates in `React.startTransition` in v7. You can use the `v7_startTransition` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_starttransition. ⚠️ React Router Future Flag Warning: Relative route resolution within Splat routes is changing in v7. You can use the `v7_relativeSplatPath` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_relativesplatpath. stderr | src/layers/__tests__/L2R/Crud.test.tsx > Crud slot β€” route handoff > cancel > navigates to cancelTarget when Cancel is clicked An update to Crud inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act βœ“ src/shared/components/CrudReadCard.test.tsx > CrudReadCard > 3. 404 shows "not found" + "Back to list" 319ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > render contract > renders ReactNode from render function 29ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > wiring > renders edit button when actionTargets.edit is present 169ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > overrides > renders custom loading fragment 17ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > overrides > renders custom empty fragment 16ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > overrides > renders custom error fragment 46ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > filters slot > renders filtersSlot when provided alongside data 152ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > render contract > render receives full row object 206ms stderr | src/layers/__tests__/L2R/Crud.test.tsx > Crud slot β€” route handoff > cancel > navigates to cancelTarget when Cancel is clicked An update to FocusScope inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to Presence inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to Presence inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to DismissableLayer inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to FocusScope inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to Presence inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to Presence inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to DismissableLayer inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > rendering > renders add mode title by default 1676ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > overrides > wraps in layoutWrapper from overrides 85ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > DetailSurface β€” delete UI contract > renders delete button when actionTargets.delete=true and deleteState is present 91ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > filters slot > does not render filters-slot when filtersSlot is not provided 93ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > pagination > renders pagination controls with prev/next buttons 73ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > DetailSurface β€” delete UI contract > does not render delete button when actionTargets.delete is not set 44ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > DetailSurface β€” delete UI contract > does not render delete button when deleteState is null 76ms βœ“ src/shared/components/CrudReadCard.test.tsx > CrudReadCard > 4. default renders title, actions, field grid 507ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > pagination > disables prev button when offset is 0 98ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > pagination > enables prev button when offset > 0 67ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > render contract > renders default plain text when render is omitted 81ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > render contract > supports mixed columns: some with render, some without 52ms βœ“ src/layers/__tests__/L2R/ListSurface.test.tsx > ListSurface > render contract > render is optional β€” ColumnConfig is valid without render 25ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > rendering > renders edit mode title 522ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > pagination > disables next button when hasMore is false 104ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > pagination > disables next button when hasMore is undefined and data length < pageSize (fallback) 46ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > DetailSurface β€” delete UI contract > delete button click calls deleteState.requestDelete 37ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > pagination > enables next button when hasMore is true 440ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > pagination > enables next button when hasMore is true even with less data than pageSize 40ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > rendering > renders form fields based on fieldPolicy 383ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > pagination > reads offset from URL search params 55ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > pagination > uses fixedParams.limit as pageSize when provided 28ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > pagination > defaults pageSize to 25 when no fixedParams.limit 35ms βœ“ src/shared/components/CrudReadCard.test.tsx > CrudReadCard > 5. edit onClick is called 817ms βœ“ src/layers/__tests__/L2R/Crud.test.tsx > Crud slot β€” route handoff > cancel > navigates to cancelTarget when Cancel is clicked 2492ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > pagination > shows totalEstimate in pagination display when >= 0 45ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > pagination > hides "of" in pagination display when totalEstimate is -1 28ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > pagination > hides "of" in pagination display when totalEstimate is undefined 39ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > pagination > falls back to total for pagination display when totalEstimate is missing but total is set 151ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > rendering > does not render fields with visible: false 490ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > pagination > resets offset when sort changes 176ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > DetailSurface β€” delete UI contract > renders confirm-delete-dialog when deleteState.showConfirm is true 716ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > DetailSurface β€” delete UI contract > does not render confirm-delete-dialog when showConfirm is false 33ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > rendering > renders disabled input for fields with editable: false 476ms βœ“ src/layers/__tests__/L2R/Crud.test.tsx > Crud slot β€” route handoff > cancel > navigates to cancelTarget via closeIntent cancel 1034ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > pagination > resets offset when filter changes 158ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > sort + filter param merge > includes stripped filter params and excludes prefixed internal keys 32ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > sort + filter param merge > does not break fixedParams 45ms (node:423) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > rendering > renders modal with dialog role for accessibility 405ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > extra > renders extra Button in header bar 419ms βœ“ src/shared/components/CrudReadCard.test.tsx > CrudReadCard > 6. delete opens ConfirmDialog 1462ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > extra > DOM order: extra container before Add button within header flex 527ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > rendering > renders Save and Cancel buttons in modal footer 370ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > extra > undefined does not break 243ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > DetailSurface β€” delete UI contract > cancel button calls deleteState.cancelDelete 737ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > extra > onClick callback is invoked when button clicked 266ms stderr | src/layers/__tests__/L2R/Crud.test.tsx > Crud slot β€” route handoff > cancel > falls back to onCancel callback An update to Crud inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act βœ“ src/layers/__tests__/L2R/Crud.test.tsx > Crud slot β€” route handoff > cancel > navigates with :id replaced in edit mode cancel 814ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > pending state > disables fieldset and modal buttons when pending 828ms stderr | src/layers/__tests__/L2R/Crud.test.tsx > Crud slot β€” route handoff > cancel > falls back to onCancel callback An update to FocusScope inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to Presence inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to Presence inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to DismissableLayer inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to FocusScope inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to Presence inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to Presence inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to DismissableLayer inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > DetailSurface β€” delete UI contract > confirm button calls deleteState.confirmDelete 1540ms βœ“ src/shared/components/CrudReadCard.test.tsx > CrudReadCard > 7. delete confirm calls onClick 1295ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > pending state > pending makes fields read-only via isEditable check 389ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > DetailSurface β€” delete UI contract > confirm button is disabled when isPending is true 377ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > DetailSurface β€” delete UI contract > renders delete-error when deleteState.error is not null 68ms βœ“ src/shared/components/CrudReadCard.test.tsx > CrudReadCard > 8. delete disabled is muted 92ms (node:438) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) (node:430) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) (node:444) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > extra > fragment with multiple buttons renders all 303ms βœ“ src/shared/components/CrudReadCard.test.tsx > CrudReadCard > 9. extra renders before Edit 169ms βœ“ src/shared/components/CrudReadCard.test.tsx > CrudReadCard > external deleteState integration > 10. renders external delete button when deleteState is provided 71ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > DetailSurface β€” delete UI contract > does not render delete-error when error is null 48ms βœ“ src/layers/__tests__/L2R/Crud.test.tsx > Crud slot β€” route handoff > cancel > falls back to onCancel callback 1577ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > DetailSurface β€” delete UI contract > calls onDeleteSuccess when delete transitions from pending to done without error 260ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > DetailSurface β€” delete UI contract > does not call onDeleteSuccess when pending transition has error 79ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > sort toggle > cycles sort: none -> asc -> desc -> none 579ms (node:453) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > failure and loading states > renders failure message and retry button 280ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > refresh button > refresh button visible when SSE not enabled 244ms βœ“ src/layers/__tests__/L2R/Crud.test.tsx > Crud slot β€” route handoff > success > navigates to successTarget with id replaced from mutation result (add) 434ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > DetailSurface β€” delete UI contract > does not call onDeleteSuccess while still pending 143ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > failure and loading states > retry button calls failure.retry 564ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > DetailSurface β€” delete UI contract > calls onDeleteSuccess at most once during repeated pendingβ†’done cycles 242ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > field formatters > applies formatter for fields with formatter defined 89ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > refresh button > refresh button visible when SSE is enabled 255ms βœ“ src/shared/components/CrudReadCard.test.tsx > CrudReadCard > external deleteState integration > 11. external delete button click calls requestDelete 153ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > field formatters > applies ReactNode formatter 77ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > field formatters > falls back to String() when no formatter for field 103ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > failure and loading states > renders loading state when pending 294ms βœ“ src/layers/L2R/slots/DataTable.test.tsx > DataTable slot > refresh button > refresh button calls refetch 143ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > closeIntent > calls onSuccess when closeIntent is success 193ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > closeIntent > calls onClose when closeIntent is cancel 274ms stderr | src/layers/__tests__/L2R/Crud.test.tsx > Crud slot β€” route handoff > success > falls back to onSuccess callback An update to Crud inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act βœ“ src/layers/__tests__/L2R/Crud.test.tsx > Crud slot β€” route handoff > success > navigates using route param id in edit mode 410ms stderr | src/layers/__tests__/L2R/Crud.test.tsx > Crud slot β€” route handoff > success > falls back to onSuccess callback An update to FocusScope inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to Presence inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to Presence inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to DismissableLayer inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to FocusScope inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to Presence inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to Presence inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to DismissableLayer inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > field formatters > passes entity as second argument to formatter 120ms βœ“ src/shared/components/CrudReadCard.test.tsx > CrudReadCard > external deleteState integration > 12. shows confirm dialog when showConfirm is true 757ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > extra > forwards extra buttons to CrudReadCard when provided 304ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > extra > extra buttons render before Edit button in CrudReadCard 294ms βœ“ src/layers/__tests__/L2R/Crud.test.tsx > Crud slot β€” route handoff > success > falls back to onSuccess callback 699ms βœ“ src/layers/__tests__/config-contracts.test.ts > config contracts β€” CrudConfig minimum requirements > every CrudConfig has entityPath 113ms βœ“ src/layers/__tests__/config-contracts.test.ts > config contracts β€” CrudConfig minimum requirements > every CrudConfig has fieldSet with at least one field 36ms βœ“ src/layers/__tests__/config-contracts.test.ts > config contracts β€” CrudConfig minimum requirements > all collection-page configs have both successTarget and cancelTarget 7ms βœ“ src/layers/__tests__/config-contracts.test.ts > config contracts β€” CrudConfig minimum requirements > all detail-page configs have both successTarget and cancelTarget 6ms βœ“ src/layers/__tests__/config-contracts.test.ts > config contracts β€” CrudConfig minimum requirements > all entity-select and entity-select-list fields have corresponding entitySelectSources 13ms βœ“ src/layers/L2R/surfaces/DetailSurface.test.tsx > DetailSurface > extra > renders multiple extra buttons via fragment 148ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > user interactions > Save button triggers snapshot.submit 354ms βœ“ src/shared/components/CrudReadCard.test.tsx > CrudReadCard > external deleteState integration > 13. confirm button calls confirmDelete 562ms βœ“ src/layers/__tests__/L2R/Crud.test.tsx > Crud slot β€” route handoff > success > falls back to cancelTarget when successTarget has :id but mutation returns no id 529ms βœ“ src/shared/components/CrudReadCard.test.tsx > CrudReadCard > external deleteState integration > 14. cancel button calls cancelDelete 636ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > user interactions > updateField is called when input value changes 505ms βœ“ src/shared/components/CrudReadCard.test.tsx > CrudReadCard > external deleteState integration > 15. confirm button disabled when isPending 392ms βœ“ src/shared/components/CrudReadCard.test.tsx > CrudReadCard > external deleteState integration > 16. renders deleteError when provided 245ms βœ“ src/shared/components/CrudReadCard.test.tsx > CrudReadCard > external deleteState integration > 17. no internal DeleteButton when deleteState is provided 18ms βœ“ src/shared/components/CrudReadCard.test.tsx > CrudReadCard > overrides > 18. renders custom error fragment via overrides 9ms βœ“ src/shared/components/CrudReadCard.test.tsx > CrudReadCard > overrides > 19. renders custom loading fragment via overrides 31ms βœ“ src/shared/components/CrudReadCard.test.tsx > CrudReadCard > overrides > 20. renders custom empty fragment via overrides 9ms stderr | src/layers/__tests__/L2R/Crud.test.tsx > Crud slot β€” route handoff > mutation tracking > does not navigate before coordinator emits closeIntent An update to Crud inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act stderr | src/layers/__tests__/L2R/Crud.test.tsx > Crud slot β€” route handoff > mutation tracking > does not navigate before coordinator emits closeIntent An update to FocusScope inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to Presence inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to Presence inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to DismissableLayer inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to FocusScope inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to Presence inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to Presence inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to DismissableLayer inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act βœ“ src/layers/__tests__/L2R/Crud.test.tsx > Crud slot β€” route handoff > success > falls back to entityPath when successTarget has :id, mutation returns no id, and no cancelTarget 567ms stderr | src/layers/__tests__/L2R/Crud.test.tsx > Crud slot β€” route handoff > mutation tracking > stays on page when failure is present An update to Crud inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act βœ“ src/layers/__tests__/L2R/Crud.test.tsx > Crud slot β€” route handoff > mutation tracking > does not navigate before coordinator emits closeIntent 446ms stderr | src/layers/__tests__/L2R/Crud.test.tsx > Crud slot β€” route handoff > mutation tracking > stays on page when failure is present An update to FocusScope inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to Presence inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to Presence inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to DismissableLayer inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to FocusScope inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to Presence inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to Presence inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to DismissableLayer inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > user interactions > dirty guard > calls cancel directly when dirty=false on Cancel click 516ms βœ“ src/layers/__tests__/L2R/Crud.test.tsx > Crud slot β€” route handoff > mutation tracking > stays on page when failure is present 572ms βœ“ src/shared/hooks/useSSE.test.ts > useSSE > 1. opens EventSource on mount: connecting β†’ connected 349ms βœ“ src/shared/hooks/useSSE.test.ts > useSSE > 2. closes EventSource on unmount 23ms βœ“ src/shared/hooks/useSSE.test.ts > useSSE > 3. entity.created β†’ onEvent({ type: "created", data }) 27ms βœ“ src/shared/hooks/useSSE.test.ts > useSSE > 4. entity.updated β†’ onEvent({ type: "updated", data }) 33ms βœ“ src/shared/hooks/useSSE.test.ts > useSSE > 5. exponential backoff: 1s β†’ 2s β†’ 4s 55ms βœ“ src/layers/__tests__/L2W/coordinatorFK.test.tsx > coordinator FK refresh (Β§7 DoD-3) > calls refetchQueries when activeCrud is truthy 398ms βœ“ src/layers/__tests__/L2W/coordinatorFK.test.tsx > coordinator FK refresh (Β§7 DoD-3) > calls refetchQueries for each entitySelectSource with cancelRefetch: false 41ms βœ“ src/shared/hooks/useSSE.test.ts > useSSE > 6. 5 consecutive failures β†’ connection-lost + onConnectionLost 83ms βœ“ src/shared/hooks/useSSE.test.ts > useSSE > 7. successful reconnect resets backoff to 1s 78ms βœ“ src/shared/hooks/useSSE.test.ts > useSSE > 8. reconnect() manually reopens EventSource 26ms βœ“ src/shared/hooks/useSSE.test.ts > useSSE > 9. heartbeat (: heartbeat) does not trigger onEvent 23ms βœ“ src/shared/hooks/useSSE.test.ts > useSSE > 10. url change closes old EventSource and opens new one 30ms βœ“ src/layers/__tests__/L2W/coordinatorFK.test.tsx > coordinator FK refresh (Β§7 DoD-3) > does NOT call refetchQueries when activeCrud is null (no modal) 52ms βœ“ src/layers/__tests__/L2W/coordinatorFK.test.tsx > coordinator FK refresh (Β§7 DoD-3) > does NOT call refetchQueries when entitySelectSources is empty 70ms βœ“ src/layers/__tests__/L2R/Crud.test.tsx > Crud slot β€” route handoff > default navigation (without successTarget / onSuccess) > navigates to detail page on success when no successTarget or onSuccess (add mode) 369ms βœ“ src/layers/__tests__/L2W/coordinatorFK.test.tsx > coordinator FK refresh (Β§7 DoD-3) > does NOT call refetchQueries when crud owner does not match 148ms βœ“ src/layers/__tests__/L2R/Crud.test.tsx > Crud slot β€” route handoff > default navigation (without successTarget / onSuccess) > navigates back in history on cancel without cancelTarget or onCancel 705ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > user interactions > dirty guard > opens DiscardDialog when dirty=true on Cancel click 1165ms βœ“ src/layers/__tests__/L1/entityResolver.test.tsx > entityResolver > resolveContract > resolves repositories contract 91ms βœ“ src/layers/__tests__/L1/entityResolver.test.tsx > entityResolver > resolveContract > resolves projects contract 2ms βœ“ src/layers/__tests__/L1/entityResolver.test.tsx > entityResolver > resolveContract > resolves runs contract 1ms βœ“ src/layers/__tests__/L1/entityResolver.test.tsx > entityResolver > resolveContract > resolves pipelines contract 1ms βœ“ src/layers/__tests__/L1/entityResolver.test.tsx > entityResolver > resolveContract > returns the same contract as the static registry 2ms βœ“ src/layers/__tests__/L1/entityResolver.test.tsx > entityResolver > useEntityList > returns a ListResult-like shape for repositories 323ms βœ“ src/layers/__tests__/L1/entityResolver.test.tsx > entityResolver > useEntityList > returns a ListResult-like shape for projects 13ms βœ“ src/layers/__tests__/L1/entityResolver.test.tsx > entityResolver > useEntityList > returns a ListResult-like shape for runs 109ms (node:463) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/layers/__tests__/L1/entityResolver.test.tsx > entityResolver > useEntityList > returns a ListResult-like shape for pipelines 180ms βœ“ src/layers/__tests__/L1/entityResolver.test.tsx > entityResolver > useEntityList > passes params through to the query 233ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > user interactions > dirty guard > Discard in modal DiscardDialog calls cancel 1721ms βœ“ src/layers/__tests__/L1/entityResolver.test.tsx > entityResolver > useEntityDetail > returns a DetailResult-like shape 145ms βœ“ src/layers/__tests__/L2R/FilterBar.test.tsx > FilterBar > renders filter legends for all filter types 1434ms βœ“ src/layers/__tests__/L1/entityResolver.test.tsx > entityResolver > useEntityDetail > works for runs with run_id-based entities 109ms βœ“ src/layers/__tests__/L1/entityResolver.test.tsx > entityResolver > useMutation > returns a MutationHandle-like shape 16ms βœ“ src/layers/__tests__/L2R/FilterBar.test.tsx > FilterBar > does not render clear button when no active filters 211ms βœ“ src/layers/__tests__/L1/entityResolver.test.tsx > entityResolver > useMutation > works for all entity paths 293ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > user interactions > dirty guard > Keep Editing in modal DiscardDialog does not call cancel 1789ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > overrides > renders custom title label 735ms βœ“ src/layers/__tests__/L1/entityResolver.test.tsx > entityResolver > useSubscription > returns a SubscriptionHandle-like shape 110ms βœ“ src/layers/__tests__/L1/entityResolver.test.tsx > entityResolver > useSubscription > works for all entity paths 34ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > overrides > renders custom error fragment 144ms βœ“ src/layers/__tests__/L2R/FilterBar.test.tsx > FilterBar > renders clear button when at least one filter is active 298ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > overrides > renders custom loading fragment 194ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > overrides > renders fields in custom order 149ms βœ“ src/layers/__tests__/L2R/FilterBar.test.tsx > FilterBar > calls onClear when clear button is clicked 810ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > field types > renders text input by default 126ms βœ“ src/layers/__tests__/L2R/FilterBar.test.tsx > FilterBar β€” multi-select > renders all options 76ms βœ“ src/layers/__tests__/L2R/FilterBar.test.tsx > FilterBar β€” multi-select > calls onChange when an option is clicked 278ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > field types > renders text input for type text 140ms βœ“ src/layers/__tests__/L2R/FilterBar.test.tsx > FilterBar β€” multi-select > toggles option off when already active 221ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > field types > renders textarea for type textarea 350ms βœ“ src/layers/__tests__/L2R/FilterBar.test.tsx > FilterBar β€” multi-select > calls onChange with undefined when last option deselected 234ms βœ“ src/layers/__tests__/L2R/FilterBar.test.tsx > FilterBar β€” multi-select > sets aria-label on option buttons 52ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > field types > renders password input for type password 347ms βœ“ src/layers/__tests__/L2R/FilterBar.test.tsx > FilterBar β€” select > renders all options plus "All" default 134ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > field types > renders checkbox for type checkbox 234ms βœ“ src/layers/__tests__/L2R/FilterBar.test.tsx > FilterBar β€” select > calls onChange with selected value 308ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > field types > renders entity-select for type entity-select 192ms βœ“ src/layers/__tests__/L1/SseRealConnection.integration.test.tsx > SseRealConnection β€” real EventSource + MSW SSE handler > connects via MSW and receives SSE events into query cache 961ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > field types > renders kv-editor for type kv-editor 240ms βœ“ src/layers/__tests__/L2R/FilterBar.test.tsx > FilterBar β€” select > calls onChange with undefined when "All" is selected 513ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > field types > renders yaml editor for type yaml 502ms βœ“ src/layers/__tests__/L2R/FilterBar.test.tsx > FilterBar β€” select > preselects the current value 270ms βœ“ src/layers/__tests__/L2R/FilterBar.test.tsx > FilterBar β€” date-range > renders preset options 28ms βœ“ src/layers/__tests__/L2R/FilterBar.test.tsx > FilterBar β€” date-range > calls onChange when a preset is clicked 66ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > field types > renders yaml editor as read-only text when disabled 126ms βœ“ src/layers/__tests__/L2R/FilterBar.test.tsx > FilterBar β€” date-range > calls onChange with undefined when active preset is clicked again 136ms βœ“ src/layers/__tests__/L2R/FilterBar.test.tsx > FilterBar β€” integration > clear button appears when any filter type has a value 194ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > field validation > does not show a pattern error for an empty value on a non-required field 247ms βœ“ src/layers/__tests__/L2R/FilterBar.test.tsx > FilterBar β€” integration > combines multiple active filters 106ms (node:479) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > field validation > shows the patternMessage for an invalid non-empty value 351ms βœ“ src/layers/__tests__/L1/SseRealConnection.integration.test.tsx > SseRealConnection β€” real EventSource + MSW SSE handler > on connection loss transitions to reconnecting and recovers on new connection 1301ms (node:478) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) (node:471) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/layers/__tests__/L1/SseRealConnection.integration.test.tsx > SseRealConnection β€” real EventSource + MSW SSE handler > with fake timers β€” backoff, lost, reconnect, heartbeat > 5 connection failures via 500 responses β†’ lost state 507ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > default rendering without targets > renders form and buttons with default snapshot (no closeIntent) 563ms (node:493) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > useBlocker dirty guard > shows DiscardDialog when blocker state is blocked and proceed is called on confirm 672ms (node:510) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/layers/__tests__/L2W/behaviorContract.test.ts > createDefaultBehaviorContract > returns an object with all BehaviorContract functions 16ms βœ“ src/layers/__tests__/L2W/behaviorContract.test.ts > createDefaultBehaviorContract > defaults() returns an object 3ms βœ“ src/layers/__tests__/L2W/behaviorContract.test.ts > createDefaultBehaviorContract > populate(entity) returns a copy 8ms βœ“ src/layers/__tests__/L2W/behaviorContract.test.ts > createDefaultBehaviorContract > toCreate(form) returns a partial copy 1ms βœ“ src/layers/__tests__/L2W/behaviorContract.test.ts > createDefaultBehaviorContract > toUpdate(form) returns a partial copy 1ms βœ“ src/layers/__tests__/L2W/behaviorContract.test.ts > createDefaultBehaviorContract > fieldPolicy(mode) returns an empty FieldPolicy 3ms βœ“ src/layers/__tests__/L2W/behaviorContract.test.ts > createDefaultBehaviorContract > populated entity does not mutate original 1ms βœ“ src/layers/__tests__/L2W/behaviorContract.test.ts > createFieldPolicyFromConfig > returns empty policy when no fieldBehavior config 2ms βœ“ src/layers/__tests__/L2W/behaviorContract.test.ts > createFieldPolicyFromConfig > applies visible constraint for add mode 2ms βœ“ src/layers/__tests__/L2W/behaviorContract.test.ts > createFieldPolicyFromConfig > applies visibility constraint for edit mode 1ms βœ“ src/layers/__tests__/L2W/behaviorContract.test.ts > createFieldPolicyFromConfig > applies editable constraint per mode 1ms βœ“ src/layers/__tests__/L2W/behaviorContract.test.ts > createFieldPolicyFromConfig > applies both visible and editable together 1ms βœ“ src/layers/__tests__/L2W/behaviorContract.test.ts > createFieldPolicyFromConfig > splits policy by mode independently 3ms βœ“ src/layers/__tests__/L2W/behaviorContract.test.ts > createFieldPolicyFromConfig > handles unknown fields gracefully 1ms βœ“ src/layers/__tests__/L2W/behaviorContract.test.ts > createFieldPolicyFromConfig > returns FieldPolicy that satisfies the type contract 2ms βœ“ src/layers/__tests__/L1/SseRealConnection.integration.test.tsx > SseRealConnection β€” real EventSource + MSW SSE handler > with fake timers β€” backoff, lost, reconnect, heartbeat > reconnect() from lost state transitions to connected 428ms ↓ src/layers/__tests__/L1/SseRealConnection.integration.test.tsx > SseRealConnection β€” real EventSource + MSW SSE handler > with fake timers β€” backoff, lost, reconnect, heartbeat > heartbeat checker triggers lost at 30s β€” skipped: eventsource uses setTimeout internally for stream reader; fake timers freeze open streams ↓ src/layers/__tests__/L1/SseRealConnection.integration.test.tsx > SseRealConnection β€” real EventSource + MSW SSE handler > with fake timers β€” backoff, lost, reconnect, heartbeat > heartbeat event resets timestamp β€” skipped: same eventsource + fake timers incompatibility as above (node:503) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > useBlocker dirty guard > does not show DiscardDialog when blocker is unblocked (dirty=false) 226ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > useBlocker dirty guard > Keep Editing in blocker DiscardDialog calls blocker.reset 561ms (node:509) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > checkbox field value > calls updateField with boolean checked value, not string value 362ms βœ“ src/layers/__tests__/L2R/CrudSurface.test.tsx > CrudSurface > backdrop click > backdrop click does not close the modal 213ms stderr | src/shared/hooks/useFilterState.test.tsx > useFilterState > 1. prefix prepends prefix to URL params ⚠️ React Router Future Flag Warning: React Router will begin wrapping state updates in `React.startTransition` in v7. You can use the `v7_startTransition` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_starttransition. ⚠️ React Router Future Flag Warning: Relative route resolution within Splat routes is changing in v7. You can use the `v7_relativeSplatPath` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_relativesplatpath. βœ“ src/msw/__tests__/runs-handler.test.ts > runs MSW handler > returns runs without filter 412ms βœ“ src/msw/__tests__/runs-handler.test.ts > runs MSW handler > filters by created_after (30 days) 36ms βœ“ src/msw/__tests__/runs-handler.test.ts > runs MSW handler > filters by created_after (24 hours) 32ms βœ“ src/shared/hooks/useFilterState.test.tsx > useFilterState > 1. prefix prepends prefix to URL params 640ms βœ“ src/shared/hooks/useFilterState.test.tsx > useFilterState > 2. setFilter merges, does not replace other params 15ms βœ“ src/shared/hooks/useFilterState.test.tsx > useFilterState > 3. clearFilters removes filters, preserves sort defaults in memory 14ms βœ“ src/msw/__tests__/runs-handler.test.ts > runs MSW handler > handles invalid created_after gracefully 135ms βœ“ src/msw/__tests__/runs-handler.test.ts > runs MSW handler > handles today shorthand gracefully 46ms βœ“ src/shared/hooks/useFilterState.test.tsx > useFilterState > 4. setSort cycles: asc β†’ desc β†’ none (returns to default) 61ms βœ“ src/shared/hooks/useFilterState.test.tsx > useFilterState > setSort with explicit order 52ms βœ“ src/shared/hooks/useFilterState.test.tsx > useFilterState > 5. clearFilters does NOT write sort defaults to URL 87ms βœ“ src/shared/hooks/useFilterState.test.tsx > useFilterState > 6. multiple prefixes do not collide 47ms βœ“ src/msw/__tests__/runs-handler.test.ts > runs MSW handler > filters by project_id 54ms βœ“ src/msw/__tests__/runs-handler.test.ts > runs MSW handler > filters by multiple project_ids 90ms βœ“ src/msw/__tests__/runs-handler.test.ts > runs MSW handler > sorts by tokens desc 112ms βœ“ src/shared/hooks/useFilterState.test.tsx > useFilterState > 7. arrays serialized as pipe-delimited 47ms βœ“ src/shared/hooks/useFilterState.test.tsx > useFilterState > 8. undefined removes param entirely 34ms βœ“ src/shared/hooks/useFilterState.test.tsx > useFilterState > getFilter returns current value for key 10ms βœ“ src/layers/__tests__/L1/mutationQueue.test.ts > pendingDeleteMap > addPendingDelete + getPendingDeletes > adds an id to the set for an entityPath 18ms βœ“ src/layers/__tests__/L1/mutationQueue.test.ts > pendingDeleteMap > addPendingDelete + getPendingDeletes > adds multiple ids to the same entityPath 4ms βœ“ src/layers/__tests__/L1/mutationQueue.test.ts > pendingDeleteMap > addPendingDelete + getPendingDeletes > handles multiple entityPaths independently 14ms βœ“ src/layers/__tests__/L1/mutationQueue.test.ts > pendingDeleteMap > removePendingDelete > removes a specific id 4ms βœ“ src/layers/__tests__/L1/mutationQueue.test.ts > pendingDeleteMap > removePendingDelete > is a no-op when id does not exist 8ms βœ“ src/layers/__tests__/L1/mutationQueue.test.ts > pendingDeleteMap > removePendingDelete > is a no-op when entityPath has no entries 3ms βœ“ src/layers/__tests__/L1/mutationQueue.test.ts > pendingDeleteMap > isMarkedDeleted > returns true for a marked id 11ms βœ“ src/layers/__tests__/L1/mutationQueue.test.ts > pendingDeleteMap > isMarkedDeleted > returns false for an unmarked id 2ms βœ“ src/layers/__tests__/L1/mutationQueue.test.ts > pendingDeleteMap > isMarkedDeleted > returns false for unknown entityPath 2ms βœ“ src/layers/__tests__/L1/mutationQueue.test.ts > pendingDeleteMap > populatePendingDeletes > populates from an array of entries 2ms βœ“ src/layers/__tests__/L1/mutationQueue.test.ts > pendingDeleteMap > populatePendingDeletes > deduplicates when same id appears twice 4ms βœ“ src/layers/__tests__/L1/mutationQueue.test.ts > pendingDeleteMap > getAllPendingDeleteEntries > returns empty array when map is empty 3ms βœ“ src/layers/__tests__/L1/mutationQueue.test.ts > pendingDeleteMap > getAllPendingDeleteEntries > returns all entries as flat array 9ms βœ“ src/layers/__tests__/L1/mutationQueue.test.ts > pendingDeleteMap > purgePendingDeletes > returns and removes all ids for an entityPath 4ms βœ“ src/layers/__tests__/L1/mutationQueue.test.ts > pendingDeleteMap > purgePendingDeletes > returns empty set for unknown entityPath 2ms βœ“ src/layers/__tests__/L1/mutationQueue.test.ts > pendingDeleteMap > purgePendingDeletes > does not affect other entityPaths 2ms βœ“ src/layers/__tests__/L1/mutationQueue.test.ts > normalizeFilters > removes undefined values 10ms βœ“ src/layers/__tests__/L1/mutationQueue.test.ts > normalizeFilters > removes empty string values 2ms (node:527) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/layers/__tests__/L1/mutationQueue.test.ts > normalizeFilters > sorts keys alphabetically 103ms βœ“ src/layers/__tests__/L1/mutationQueue.test.ts > normalizeFilters > returns empty object for all-empty filters 2ms βœ“ src/msw/__tests__/runs-handler.test.ts > runs MSW handler > sorts by tokens asc 166ms stderr | src/layers/__tests__/L2R/EntityDetail.test.tsx > EntityDetail β€” delete navigation > navigates to entityPath on delete success without custom onDeleteSuccess ⚠️ React Router Future Flag Warning: React Router will begin wrapping state updates in `React.startTransition` in v7. You can use the `v7_startTransition` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_starttransition. ⚠️ React Router Future Flag Warning: Relative route resolution within Splat routes is changing in v7. You can use the `v7_relativeSplatPath` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_relativesplatpath. βœ“ src/layers/__tests__/L2R/EntityDetail.test.tsx > EntityDetail β€” delete navigation > navigates to entityPath on delete success without custom onDeleteSuccess 784ms βœ“ src/layers/__tests__/L2R/EntityDetail.test.tsx > EntityDetail β€” delete navigation > calls custom onDeleteSuccess and does not default navigate 117ms (node:535) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/layers/__tests__/L2R/AgeCheckIndicator.test.tsx > AgeCheckIndicator > renders children when refCount > 0 (SSE view) 395ms βœ“ src/layers/__tests__/L2R/AgeCheckIndicator.test.tsx > AgeCheckIndicator > renders children when refCount === 0 and data is fresh 20ms βœ“ src/layers/__tests__/L2R/AgeCheckIndicator.test.tsx > AgeCheckIndicator > renders skeleton + message + refresh button when refCount === 0 and data is stale 789ms βœ“ src/layers/__tests__/L2R/AgeCheckIndicator.test.tsx > AgeCheckIndicator > refresh button calls invalidateQueries when no onRefresh provided 158ms βœ“ src/layers/__tests__/L2R/AgeCheckIndicator.test.tsx > AgeCheckIndicator > refresh button calls onRefresh when provided 65ms stderr | src/features/bot-accounts/BotAccountsListTab.test.tsx > BotAccountsListTab > renders DataTable with mock bot account names ⚠️ React Router Future Flag Warning: React Router will begin wrapping state updates in `React.startTransition` in v7. You can use the `v7_startTransition` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_starttransition. ⚠️ React Router Future Flag Warning: Relative route resolution within Splat routes is changing in v7. You can use the `v7_relativeSplatPath` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_relativesplatpath. βœ“ src/features/bot-accounts/BotAccountsListTab.test.tsx > BotAccountsListTab > renders DataTable with mock bot account names 1591ms (node:543) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/features/bot-accounts/BotAccountsListTab.test.tsx > BotAccountsListTab > displays Name, Description, Created columns 264ms βœ“ src/features/bot-accounts/BotAccountsListTab.test.tsx > BotAccountsListTab > name links do NOT contain ?tab=accounts 247ms βœ“ src/features/bot-accounts/BotAccountsListTab.test.tsx > BotAccountsListTab > shows create button with label "+ New Bot Account" 287ms βœ“ src/features/bot-accounts/BotAccountsListTab.test.tsx > BotAccountsListTab > createTarget leads to /repositories/bot-accounts/add 189ms (node:549) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/features/bot-accounts/BotAccountsListTab.test.tsx > BotAccountsListTab > renders Crud component 120ms (node:558) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) stderr | src/features/bot-accounts/BotAccountDetailPage.test.tsx > BotAccountDetailPage > renders account name in the page title ⚠️ React Router Future Flag Warning: React Router will begin wrapping state updates in `React.startTransition` in v7. You can use the `v7_startTransition` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_starttransition. ⚠️ React Router Future Flag Warning: Relative route resolution within Splat routes is changing in v7. You can use the `v7_relativeSplatPath` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_relativesplatpath. (node:567) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/features/bot-accounts/BotAccountDetailPage.test.tsx > BotAccountDetailPage > renders account name in the page title 1506ms (node:575) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/features/bot-accounts/BotAccountDetailPage.test.tsx > BotAccountDetailPage > renders edit dialog with "Edit Bot Account" title when edit route activated 662ms (node:574) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) stderr | src/lib/__tests__/useOfflineState.test.tsx > useOfflineState > window online event updates isOnline An update to TestComponent inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act stderr | src/lib/__tests__/useOfflineState.test.tsx > useOfflineState > pendingCount matches getOutboxEntries length An update to TestComponent inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act βœ“ src/lib/__tests__/useOfflineState.test.tsx > useOfflineState > isOnline === false when navigator.onLine is false 143ms βœ“ src/lib/__tests__/useOfflineState.test.tsx > useOfflineState > isOnline === true by default 14ms βœ“ src/lib/__tests__/useOfflineState.test.tsx > useOfflineState > window online event updates isOnline 46ms stderr | src/lib/__tests__/useOfflineState.test.tsx > useOfflineState > lastSynced is null when cache is empty An update to TestComponent inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act stderr | src/lib/__tests__/useOfflineState.test.tsx > useOfflineState > lastSynced reflects max dataUpdatedAt An update to TestComponent inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act stderr | src/lib/__tests__/useOfflineState.test.tsx > useOfflineState > lastSynced reflects max dataUpdatedAt An update to TestComponent inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act stderr | src/lib/__tests__/useOfflineState.test.tsx > useOfflineState > queryClient.invalidateQueries updates lastSynced An update to TestComponent inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to TestComponent inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act stderr | src/lib/__tests__/useOfflineState.test.tsx > useOfflineState > queryClient.invalidateQueries updates lastSynced An update to TestComponent inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act βœ“ src/lib/__tests__/useOfflineState.test.tsx > useOfflineState > pendingCount matches getOutboxEntries length 29ms βœ“ src/lib/__tests__/useOfflineState.test.tsx > useOfflineState > lastSynced is null when cache is empty 31ms βœ“ src/lib/__tests__/useOfflineState.test.tsx > useOfflineState > lastSynced reflects max dataUpdatedAt 28ms βœ“ src/features/bot-accounts/BotAccountDetailPage.test.tsx > BotAccountDetailPage > breadcrumb Bot Accounts link does NOT contain ?tab=accounts 412ms (node:589) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/lib/__tests__/useOfflineState.test.tsx > useOfflineState > queryClient.invalidateQueries updates lastSynced 41ms βœ“ src/features/bot-accounts/BotAccountDetailPage.test.tsx > BotAccountDetailPage > breadcrumb Repositories link points to /repositories/repos 720ms βœ“ src/lib/__tests__/queryCacheEviction.test.tsx > startCacheEviction > removes inactive queries older than retention threshold 146ms βœ“ src/lib/__tests__/queryCacheEviction.test.tsx > startCacheEviction > does not remove queries under retention threshold accounting for interval delay 30ms stderr | src/features/repositories/RepositoriesPage.test.tsx > RepositoriesPage layout > renders Tabs component with Repositories and Bot Accounts ⚠️ React Router Future Flag Warning: React Router will begin wrapping state updates in `React.startTransition` in v7. You can use the `v7_startTransition` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_starttransition. ⚠️ React Router Future Flag Warning: Relative route resolution within Splat routes is changing in v7. You can use the `v7_relativeSplatPath` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_relativesplatpath. βœ“ src/lib/__tests__/queryCacheEviction.test.tsx > startCacheEviction > does not remove active queries with observers 635ms βœ“ src/lib/__tests__/queryCacheEviction.test.tsx > startCacheEviction > removes only exact matching query keys 15ms βœ“ src/lib/__tests__/queryCacheEviction.test.tsx > startCacheEviction > skips eviction entirely when offline 8ms βœ“ src/lib/__tests__/queryCacheEviction.test.tsx > startCacheEviction > returns a cleanup function that stops the interval 75ms βœ“ src/lib/__tests__/queryCacheEviction.test.tsx > startCacheEviction > evicts only queries older than threshold across multiple entity paths 13ms stderr | src/layers/__tests__/L1/useDataAge.test.tsx > useDataAge > returns ageMs for data that is N ms old An update to TestComponent inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act stderr | src/layers/__tests__/L1/useDataAge.test.tsx > useDataAge > isStale === true when ageMs > AGE_THRESHOLD An update to TestComponent inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act βœ“ src/layers/__tests__/L1/useDataAge.test.tsx > useDataAge > returns ageMs for data that is N ms old 226ms βœ“ src/features/repositories/RepositoriesPage.test.tsx > RepositoriesPage layout > renders Tabs component with Repositories and Bot Accounts 2641ms stderr | src/layers/__tests__/L1/useDataAge.test.tsx > useDataAge > isStale === false when ageMs <= AGE_THRESHOLD An update to TestComponent inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act βœ“ src/layers/__tests__/L1/useDataAge.test.tsx > useDataAge > isStale === true when ageMs > AGE_THRESHOLD 133ms stderr | src/layers/__tests__/L1/useDataAge.test.tsx > useDataAge > updates when cache subscription fires An update to TestComponent inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act stderr | src/layers/__tests__/L1/useDataAge.test.tsx > useDataAge > updates when cache subscription fires An update to TestComponent inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act βœ“ src/layers/__tests__/L1/useDataAge.test.tsx > useDataAge > isStale === false when ageMs <= AGE_THRESHOLD 98ms stderr | src/layers/__tests__/L1/useDataAge.test.tsx > useDataAge > updates when cache subscription fires An update to TestComponent inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act An update to TestComponent inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act stderr | src/layers/__tests__/L1/useDataAge.test.tsx > useDataAge > updates on minute tick (fakeTimers) An update to TestComponent inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { /* fire events that update state */ }); /* assert on the output */ This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act βœ“ src/layers/__tests__/L1/useDataAge.test.tsx > useDataAge > updates when cache subscription fires 164ms βœ“ src/layers/__tests__/L1/useDataAge.test.tsx > useDataAge > updates on minute tick (fakeTimers) 87ms βœ“ src/features/repositories/RepositoriesPage.test.tsx > RepositoriesPage layout > active tab is determined from URL pathname, not React state 375ms βœ“ src/shared/components/CrudModal.test.tsx > CrudModal > 1. open=false renders nothing 409ms βœ“ src/features/repositories/RepositoriesPage.test.tsx > RepositoriesPage layout > bot-accounts tab is active when URL contains /bot-accounts 431ms βœ“ src/shared/components/EntitySelectList.test.tsx > EntitySelectList > renders rows from ref-shaped value with resolved labels 714ms βœ“ src/features/repositories/RepositoriesPage.test.tsx > RepositoriesPage layout > clicking Repositories tab navigates to /repositories/repos 282ms βœ“ src/features/repositories/RepositoriesPage.test.tsx > RepositoriesPage layout > clicking Bot Accounts tab navigates to /repositories/bot-accounts 210ms βœ“ src/shared/components/EntitySelectList.test.tsx > EntitySelectList > renders rows from string value with resolved labels 137ms βœ“ src/shared/components/EntitySelectList.test.tsx > EntitySelectList > renders empty state with an add button 25ms βœ“ src/shared/components/EntitySelectList.test.tsx > EntitySelectList > renders readOnly mode as plain labels 29ms βœ“ src/features/repositories/RepositoriesPage.test.tsx > RepositoriesPage layout > does NOT render DataTable directly (only via Outlet) 194ms (node:599) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/shared/components/EntitySelectList.test.tsx > EntitySelectList > normalizes ref-shaped value into the form via onChange on mount 230ms βœ“ src/shared/components/CrudModal.test.tsx > CrudModal > 2. open=true renders title, children, footer 1656ms βœ“ src/features/repositories/RepositoriesPage.test.tsx > RepositoriesPage layout > does NOT render Crud directly (only via child routes) 114ms (node:607) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/shared/components/CrudModal.test.tsx > CrudModal > 3. Backdrop click does not close dialog 1212ms βœ“ src/shared/components/CrudModal.test.tsx > CrudModal > 4. Cancel pristine calls onClose 928ms stderr | src/features/auth/CallbackPage.test.tsx > CallbackPage > navigates to dashboard when session fetch succeeds ⚠️ React Router Future Flag Warning: React Router will begin wrapping state updates in `React.startTransition` in v7. You can use the `v7_startTransition` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_starttransition. ⚠️ React Router Future Flag Warning: Relative route resolution within Splat routes is changing in v7. You can use the `v7_relativeSplatPath` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_relativesplatpath. βœ“ src/shared/components/EntitySelectList.test.tsx > EntitySelectList > adds a row and emits the selected repository id 3068ms stderr | src/features/repositories/RepositoriesList.test.tsx > RepositoriesList > renders DataTable with columns ⚠️ React Router Future Flag Warning: React Router will begin wrapping state updates in `React.startTransition` in v7. You can use the `v7_startTransition` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_starttransition. ⚠️ React Router Future Flag Warning: Relative route resolution within Splat routes is changing in v7. You can use the `v7_relativeSplatPath` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_relativesplatpath. βœ“ src/features/repositories/RepositoriesList.test.tsx > RepositoriesList > renders DataTable with columns 1104ms βœ“ src/features/auth/CallbackPage.test.tsx > CallbackPage > navigates to dashboard when session fetch succeeds 831ms βœ“ src/features/auth/CallbackPage.test.tsx > CallbackPage > sets auth store with session data when fetch succeeds 61ms βœ“ src/shared/components/CrudModal.test.tsx > CrudModal > 5. Cancel dirty opens DiscardDialog 1264ms βœ“ src/features/auth/CallbackPage.test.tsx > CallbackPage > navigates to returnUrl when set in sessionStorage 83ms βœ“ src/shared/components/EntitySelectList.test.tsx > EntitySelectList > removes a row and emits the remaining ids 195ms βœ“ src/shared/components/EntitySelect.test.tsx > EntitySelect > shows loading state 1719ms βœ“ src/shared/components/EntitySelectList.test.tsx > EntitySelectList > emits [] when all rows are removed 275ms βœ“ src/shared/components/EntitySelect.test.tsx > EntitySelect > shows empty state 400ms βœ“ src/features/auth/CallbackPage.test.tsx > CallbackPage > shows error when session fetch fails 85ms βœ“ src/features/auth/CallbackPage.test.tsx > CallbackPage > shows redirecting message and redirects to login on error 55ms βœ“ src/shared/components/EntitySelect.test.tsx > EntitySelect > shows error state 113ms βœ“ src/shared/components/EntitySelectList.test.tsx > EntitySelectList > reorders rows with up and down buttons preserving priority order 447ms βœ“ src/features/repositories/RepositoriesList.test.tsx > RepositoriesList > renders Crud component 355ms βœ“ src/lib/__tests__/mutationOutbox.test.ts > replayOutbox > triggers refetchQueries({ stale: true }) after successful drain 129ms βœ“ src/lib/__tests__/mutationOutbox.test.ts > replayOutbox > does NOT call refetchQueries({ stale: true }) when failed > 0 18ms βœ“ src/lib/__tests__/mutationOutbox.test.ts > replayOutbox > refetchQueries is called after delete replay drain 21ms βœ“ src/lib/__tests__/mutationOutbox.test.ts > replayOutbox > skips refetchQueries when outbox is empty 5ms βœ“ src/features/repositories/RepositoriesList.test.tsx > RepositoriesList > create button label is "+ New Repository" 600ms βœ“ src/shared/components/EntitySelectList.test.tsx > EntitySelectList > disables up on the first row and down on the last row 249ms βœ“ src/features/repositories/RepositoriesList.test.tsx > RepositoriesList > renders data table with repository rows 559ms βœ“ src/shared/components/EntitySelectList.test.tsx > EntitySelectList > disables add when the cap of 16 rows is reached 758ms βœ“ src/shared/components/EntitySelect.test.tsx > EntitySelect > supports single select 1546ms βœ“ src/shared/components/EntitySelect.test.tsx > EntitySelect > supports multi select 672ms βœ“ src/shared/components/EntitySelect.test.tsx > EntitySelect > displays placeholder when value is undefined 43ms βœ“ src/shared/components/EntitySelect.test.tsx > EntitySelect > renders readOnly single mode as text 21ms βœ“ src/shared/components/EntitySelect.test.tsx > EntitySelect > renders readOnly multi mode as comma-separated labels 26ms βœ“ src/shared/components/EntitySelect.test.tsx > EntitySelect > renders raw value in readOnly when no match 20ms (node:615) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/shared/components/EntitySelect.test.tsx > EntitySelect > disables the trigger when disabled prop is true 156ms βœ“ src/shared/components/CrudModal.test.tsx > CrudModal > 6. Discard β†’ onClose, Keep β†’ dialog stays 3382ms βœ“ src/shared/components/CrudModal.test.tsx > CrudModal > 7. ESC dirty opens DiscardDialog 697ms βœ“ src/shared/components/CrudModal.test.tsx > CrudModal > 8. ESC pristine calls onClose 194ms (node:616) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/shared/components/CrudModal.test.tsx > CrudModal > 9. Save calls onSave 212ms βœ“ src/layers/L1/contracts/projects.test.ts > projectsContract request normalizers > request.create is defined 11ms βœ“ src/layers/L1/contracts/projects.test.ts > projectsContract request normalizers > request.update is defined 2ms βœ“ src/layers/L1/contracts/projects.test.ts > projectsContract request normalizers > request.create > normalizes a string secrets value into the webhook secret object shape 6ms βœ“ src/layers/L1/contracts/projects.test.ts > projectsContract request normalizers > request.create > parses a YAML-string config into an object 17ms βœ“ src/layers/L1/contracts/projects.test.ts > projectsContract request normalizers > request.create > leaves other fields untouched 4ms βœ“ src/layers/L1/contracts/projects.test.ts > projectsContract request normalizers > request.update > normalizes a string secrets value into the webhook secret object shape 2ms βœ“ src/layers/L1/contracts/projects.test.ts > projectsContract request normalizers > request.update > omits an empty secrets value so edits never wipe an existing secret 1ms βœ“ src/layers/L1/contracts/projects.test.ts > projectsContract request normalizers > request.update > leaves an object config unchanged 2ms βœ“ src/layers/L1/contracts/projects.test.ts > projectsContract request normalizers > request.update > parses a YAML-string config into an object 4ms βœ“ src/layers/L1/contracts/projects.test.ts > projectsContract request normalizers > request.update > omits an empty config value 13ms βœ“ src/layers/L1/contracts/projects.test.ts > projectsContract request normalizers > request.update > leaves other fields untouched 6ms βœ“ src/shared/components/CrudModal.test.tsx > CrudModal > 10. isPending disables Save + Cancel and shows spinner 259ms (node:631) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/shared/components/CrudModal.test.tsx > CrudModal > 11. cancelLabel prop overrides the cancel button text 286ms (node:637) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/layers/__tests__/L2R/defaultEditNav.test.ts > createDefaultEditNavHandler > returns a function when edit target is present 13ms βœ“ src/layers/__tests__/L2R/defaultEditNav.test.ts > createDefaultEditNavHandler > calls navigate with edit target and replaced id 24ms βœ“ src/layers/__tests__/L2R/defaultEditNav.test.ts > createDefaultEditNavHandler > falls back to pathname + /edit when actionTargets is undefined 7ms βœ“ src/layers/__tests__/L2R/defaultEditNav.test.ts > createDefaultEditNavHandler > falls back to pathname + /edit when actionTargets.edit is undefined 2ms βœ“ src/layers/__tests__/L2R/defaultEditNav.test.ts > createDefaultEditNavHandler > falls back to pathname + /edit when actionTargets.edit is missing 2ms βœ“ src/layers/__tests__/L2R/defaultEditNav.test.ts > createDefaultEditNavHandler > calls navigate with the replaced id correctly 2ms βœ“ src/layers/__tests__/L2R/defaultEditNav.test.ts > createDefaultEditNavHandler > explicit edit target takes precedence over derived default 2ms βœ“ src/layers/__tests__/L2R/defaultEditNav.test.ts > createDefaultEditNavHandler > derives default from the provided pathname 6ms βœ“ src/layers/__tests__/L2R/defaultEditNav.test.ts > createDefaultEditNavHandler > editTargetOverride takes precedence over actionTargets.edit 2ms (node:647) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/layers/__tests__/L1/RefCountStore.test.ts > refCountStore > incrementRefCount > increases count and notifies subscribed listener 76ms βœ“ src/layers/__tests__/L1/RefCountStore.test.ts > refCountStore > decrementRefCount > decreases count and notifies subscribed listener 4ms βœ“ src/layers/__tests__/L1/RefCountStore.test.ts > refCountStore > decrementRefCount > removes key when count reaches 0 17ms βœ“ src/layers/__tests__/L1/RefCountStore.test.ts > refCountStore > decrementRefCount > returns 0 when decrementing a non-existent key 17ms βœ“ src/layers/__tests__/L1/RefCountStore.test.ts > refCountStore > subscribeRefCount > returns an unsubscribe function that stops notifications 19ms βœ“ src/layers/__tests__/L1/RefCountStore.test.ts > refCountStore > key isolation > notifies only the subscribed key, not other keys 21ms βœ“ src/layers/__tests__/L1/RefCountStore.test.ts > refCountStore > refCountKey > produces idempotent keys for same entityPath and params 11ms stderr | src/layers/__tests__/L2W/routes/CrudRoute.test.tsx > CrudRoute > sets route context on mount with id (detail page) ⚠️ React Router Future Flag Warning: React Router will begin wrapping state updates in `React.startTransition` in v7. You can use the `v7_startTransition` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_starttransition. ⚠️ React Router Future Flag Warning: Relative route resolution within Splat routes is changing in v7. You can use the `v7_relativeSplatPath` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_relativesplatpath. βœ“ src/layers/__tests__/L2W/routes/CrudRoute.test.tsx > CrudRoute > sets route context on mount with id (detail page) 300ms βœ“ src/layers/__tests__/L2W/routes/CrudRoute.test.tsx > CrudRoute > sets route context on mount without id (collection page) 9ms βœ“ src/layers/__tests__/L2W/routes/CrudRoute.test.tsx > CrudRoute > sets route context with prefix when provided 10ms βœ“ src/layers/__tests__/L2W/routes/CrudRoute.test.tsx > CrudRoute > cleans up (sets null) on unmount 9ms βœ“ src/layers/__tests__/L2W/routes/CrudRoute.test.tsx > CrudRoute > does not re-set context on re-render with same props 15ms βœ“ src/layers/__tests__/L2W/routes/CrudRoute.test.tsx > CrudRoute > re-sets context when id changes 15ms βœ“ src/layers/__tests__/L2W/formBridge.test.ts > useFormBridge > starts with dirty=false and pending=false 357ms βœ“ src/layers/__tests__/L2W/formBridge.test.ts > useFormBridge > setDirty(true) sets dirty=true on bridge 78ms βœ“ src/layers/__tests__/L2W/formBridge.test.ts > useFormBridge > setDirty(false) sets dirty=false on bridge 45ms βœ“ src/layers/__tests__/L2W/formBridge.test.ts > useFormBridge > setPending(true) sets pending=true on bridge 9ms βœ“ src/layers/__tests__/L2W/formBridge.test.ts > useFormBridge > setPending(false) sets pending=false on bridge 23ms βœ“ src/layers/__tests__/L2W/formBridge.test.ts > useFormBridge > markDirty() sets dirty=true 23ms βœ“ src/layers/__tests__/L2W/formBridge.test.ts > useFormBridge > reset() clears both dirty and pending 120ms βœ“ src/layers/__tests__/L2W/formBridge.test.ts > useFormBridge > supports dirty β†’ pending transition (submit start) 57ms βœ“ src/layers/__tests__/L2W/formBridge.test.ts > useFormBridge > supports pending β†’ not pending transition while dirty stays (failure case) 20ms βœ“ src/layers/__tests__/L2W/formBridge.test.ts > useFormBridge > bridge object reflects current state 12ms (node:655) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) (node:685) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) (node:670) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) (node:676) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) (node:662) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/shared/hooks/useDirtyGuard.test.ts > useDirtyGuard > 1. isDirty=false β†’ blocker ei estΓ€ 128ms βœ“ src/shared/hooks/useDirtyGuard.test.ts > useDirtyGuard > 2. isDirty=true β†’ blocker estÀÀ (isBlocked=true) 12ms βœ“ src/shared/hooks/useDirtyGuard.test.ts > useDirtyGuard > 3. submitted=true β†’ blocker ei estΓ€ vaikka isDirty 7ms βœ“ src/shared/hooks/useDirtyGuard.test.ts > useDirtyGuard > 4. confirmNavigation β†’ blocker.proceed() β†’ nav jatkuu 22ms βœ“ src/shared/hooks/useDirtyGuard.test.ts > useDirtyGuard > 5. cancelNavigation β†’ blocker.reset() β†’ formi jÀÀ 8ms βœ“ src/shared/hooks/useDirtyGuard.test.ts > useDirtyGuard > 6. beforeunload estetÀÀn kun isDirty && !submitted 15ms βœ“ src/shared/hooks/useDirtyGuard.test.ts > useDirtyGuard > 7. beforeunload EI estetΓ€ kun submitted 7ms βœ“ src/layers/__tests__/L2R/defaultRowNav.test.ts > createDefaultRowNavHandler > returns a function that accepts an id 17ms βœ“ src/layers/__tests__/L2R/defaultRowNav.test.ts > createDefaultRowNavHandler > calls navigate with rowTarget where :id is replaced 21ms βœ“ src/layers/__tests__/L2R/defaultRowNav.test.ts > createDefaultRowNavHandler > replaces :id with the provided id string 15ms βœ“ src/layers/__tests__/L2R/defaultRowNav.test.ts > createDefaultRowNavHandler > falls back to pathname + /:id when rowTarget is undefined 3ms βœ“ src/layers/__tests__/L2R/defaultRowNav.test.ts > createDefaultRowNavHandler > does not throw when rowTarget is undefined (derived default used) 39ms βœ“ src/layers/__tests__/L2R/defaultRowNav.test.ts > createDefaultRowNavHandler > replaces all occurrences of :id in the target 7ms βœ“ src/layers/__tests__/L2R/defaultRowNav.test.ts > createDefaultRowNavHandler > leaves target unchanged if :id not present 6ms βœ“ src/layers/__tests__/L2R/defaultRowNav.test.ts > createDefaultRowNavHandler > explicit rowTarget takes precedence over derived default 4ms βœ“ src/layers/__tests__/L2R/defaultRowNav.test.ts > createDefaultRowNavHandler > derives default from the provided pathname 2ms stderr | src/msw/__tests__/pipelines-handler.test.ts > pipelineHandlers β€” skill_repos FK semantics > resolves submitted ordered repository ids into joined refs on create TypeError: Body is unusable: Body has already been read  at consumeBody (node:internal/deps/undici/undici:6981:31)  at FetchRequest.json (node:internal/deps/undici/undici:6909:18) at /workspace/niko/agent-platform/frontend/src/msw/handlers/pipelines.ts:39:33 at file:///workspace/node_modules/msw/lib/core/handlers/RequestHandler.mjs:176:26 at HttpHandler.run (file:///workspace/node_modules/msw/lib/core/handlers/RequestHandler.mjs:142:35)  at processTicksAndRejections (node:internal/process/task_queues:104:5) at executeHandlers (file:///workspace/node_modules/msw/lib/core/utils/executeHandlers.mjs:11:14) at until (file:///workspace/node_modules/until-async/lib/index.js:14:17) at InterceptorHttpNetworkFrame.resolve (file:///workspace/node_modules/msw/lib/core/experimental/frames/http-frame.mjs:81:41) at Emitter. (file:///workspace/node_modules/msw/lib/core/experimental/define-network.mjs:80:11) [MSW] Encountered an unhandled exception during the handler lookup for "POST http://localhost:3000/api/v1/projects/proj-1/pipelines". Please see the original error above. stderr | src/msw/__tests__/pipelines-handler.test.ts > pipelineHandlers β€” skill_repos FK semantics > PUT with an ordered id array round-trips the refs in the submitted order TypeError: Body is unusable: Body has already been read  at consumeBody (node:internal/deps/undici/undici:6981:31)  at FetchRequest.json (node:internal/deps/undici/undici:6909:18) at /workspace/niko/agent-platform/frontend/src/msw/handlers/pipelines.ts:51:33 at file:///workspace/node_modules/msw/lib/core/handlers/RequestHandler.mjs:176:26 at HttpHandler.run (file:///workspace/node_modules/msw/lib/core/handlers/RequestHandler.mjs:142:35)  at processTicksAndRejections (node:internal/process/task_queues:104:5) at executeHandlers (file:///workspace/node_modules/msw/lib/core/utils/executeHandlers.mjs:11:14) at until (file:///workspace/node_modules/until-async/lib/index.js:14:17) at InterceptorHttpNetworkFrame.resolve (file:///workspace/node_modules/msw/lib/core/experimental/frames/http-frame.mjs:81:41) at Emitter. (file:///workspace/node_modules/msw/lib/core/experimental/define-network.mjs:80:11) [MSW] Encountered an unhandled exception during the handler lookup for "PUT http://localhost:3000/api/v1/pipelines/pipeline-proj-1-1". Please see the original error above. (node:702) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/msw/__tests__/pipelines-handler.test.ts > pipelineHandlers β€” skill_repos FK semantics > resolves submitted ordered repository ids into joined refs on create 177ms βœ“ src/msw/__tests__/pipelines-handler.test.ts > pipelineHandlers β€” skill_repos FK semantics > PUT with an ordered id array round-trips the refs in the submitted order 53ms stderr | src/msw/__tests__/pipelines-handler.test.ts > pipelineHandlers β€” skill_repos FK semantics > PUT with [] clears skill repos TypeError: Body is unusable: Body has already been read  at consumeBody (node:internal/deps/undici/undici:6981:31)  at FetchRequest.json (node:internal/deps/undici/undici:6909:18) at /workspace/niko/agent-platform/frontend/src/msw/handlers/pipelines.ts:51:33 at file:///workspace/node_modules/msw/lib/core/handlers/RequestHandler.mjs:176:26 at HttpHandler.run (file:///workspace/node_modules/msw/lib/core/handlers/RequestHandler.mjs:142:35)  at processTicksAndRejections (node:internal/process/task_queues:104:5) at executeHandlers (file:///workspace/node_modules/msw/lib/core/utils/executeHandlers.mjs:11:14) at until (file:///workspace/node_modules/until-async/lib/index.js:14:17) at InterceptorHttpNetworkFrame.resolve (file:///workspace/node_modules/msw/lib/core/experimental/frames/http-frame.mjs:81:41) at Emitter. (file:///workspace/node_modules/msw/lib/core/experimental/define-network.mjs:80:11) [MSW] Encountered an unhandled exception during the handler lookup for "PUT http://localhost:3000/api/v1/pipelines/pipeline-proj-1-1". Please see the original error above. stderr | src/msw/__tests__/pipelines-handler.test.ts > pipelineHandlers β€” skill_repos FK semantics > PUT with null keeps existing skill repos untouched TypeError: Body is unusable: Body has already been read  at consumeBody (node:internal/deps/undici/undici:6981:31)  at FetchRequest.json (node:internal/deps/undici/undici:6909:18) at /workspace/niko/agent-platform/frontend/src/msw/handlers/pipelines.ts:51:33 at file:///workspace/node_modules/msw/lib/core/handlers/RequestHandler.mjs:176:26 at HttpHandler.run (file:///workspace/node_modules/msw/lib/core/handlers/RequestHandler.mjs:142:35)  at processTicksAndRejections (node:internal/process/task_queues:104:5) at executeHandlers (file:///workspace/node_modules/msw/lib/core/utils/executeHandlers.mjs:11:14) at until (file:///workspace/node_modules/until-async/lib/index.js:14:17) at InterceptorHttpNetworkFrame.resolve (file:///workspace/node_modules/msw/lib/core/experimental/frames/http-frame.mjs:81:41) at Emitter. (file:///workspace/node_modules/msw/lib/core/experimental/define-network.mjs:80:11) [MSW] Encountered an unhandled exception during the handler lookup for "PUT http://localhost:3000/api/v1/pipelines/pipeline-proj-1-1". Please see the original error above. βœ“ src/msw/__tests__/pipelines-handler.test.ts > pipelineHandlers β€” skill_repos FK semantics > PUT with [] clears skill repos 68ms stderr | src/msw/__tests__/pipelines-handler.test.ts > pipelineHandlers β€” skill_repos FK semantics > PUT with null keeps existing skill repos untouched TypeError: Body is unusable: Body has already been read  at consumeBody (node:internal/deps/undici/undici:6981:31)  at FetchRequest.json (node:internal/deps/undici/undici:6909:18) at /workspace/niko/agent-platform/frontend/src/msw/handlers/pipelines.ts:51:33 at file:///workspace/node_modules/msw/lib/core/handlers/RequestHandler.mjs:176:26 at HttpHandler.run (file:///workspace/node_modules/msw/lib/core/handlers/RequestHandler.mjs:142:35)  at processTicksAndRejections (node:internal/process/task_queues:104:5) at executeHandlers (file:///workspace/node_modules/msw/lib/core/utils/executeHandlers.mjs:11:14) at until (file:///workspace/node_modules/until-async/lib/index.js:14:17) at InterceptorHttpNetworkFrame.resolve (file:///workspace/node_modules/msw/lib/core/experimental/frames/http-frame.mjs:81:41) at Emitter. (file:///workspace/node_modules/msw/lib/core/experimental/define-network.mjs:80:11) [MSW] Encountered an unhandled exception during the handler lookup for "PUT http://localhost:3000/api/v1/pipelines/pipeline-proj-1-1". Please see the original error above. βœ“ src/msw/__tests__/pipelines-handler.test.ts > pipelineHandlers β€” skill_repos FK semantics > PUT with null keeps existing skill repos untouched 108ms stderr | src/msw/__tests__/pipelines-handler.test.ts > pipelineHandlers β€” skill_repos FK semantics > PUT without the skill_repos field leaves skill repos untouched TypeError: Body is unusable: Body has already been read  at consumeBody (node:internal/deps/undici/undici:6981:31)  at FetchRequest.json (node:internal/deps/undici/undici:6909:18) at /workspace/niko/agent-platform/frontend/src/msw/handlers/pipelines.ts:51:33 at file:///workspace/node_modules/msw/lib/core/handlers/RequestHandler.mjs:176:26 at HttpHandler.run (file:///workspace/node_modules/msw/lib/core/handlers/RequestHandler.mjs:142:35)  at processTicksAndRejections (node:internal/process/task_queues:104:5) at executeHandlers (file:///workspace/node_modules/msw/lib/core/utils/executeHandlers.mjs:11:14) at until (file:///workspace/node_modules/until-async/lib/index.js:14:17) at InterceptorHttpNetworkFrame.resolve (file:///workspace/node_modules/msw/lib/core/experimental/frames/http-frame.mjs:81:41) at Emitter. (file:///workspace/node_modules/msw/lib/core/experimental/define-network.mjs:80:11) [MSW] Encountered an unhandled exception during the handler lookup for "PUT http://localhost:3000/api/v1/pipelines/pipeline-proj-1-1". Please see the original error above. (node:695) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/msw/__tests__/pipelines-handler.test.ts > pipelineHandlers β€” skill_repos FK semantics > PUT without the skill_repos field leaves skill repos untouched 152ms βœ“ src/shared/components/MetadataCard.test.tsx > MetadataCard > shows loading skeleton 558ms βœ“ src/shared/components/MetadataCard.test.tsx > MetadataCard > shows error state with retry button 893ms βœ“ src/shared/components/MetadataCard.test.tsx > MetadataCard > renders labels and values in grid 177ms βœ“ src/shared/components/MetadataCard.test.tsx > MetadataCard > renders field with spanFull as col-span-full 129ms βœ“ src/shared/components/MetadataCard.test.tsx > MetadataCard > shows em dash for empty value 174ms βœ“ src/shared/components/MetadataCard.test.tsx > MetadataCard > uses render callback over value 110ms βœ“ src/shared/components/MetadataCard.test.tsx > MetadataCard > renders children instead of default layout 46ms βœ“ src/shared/components/YamlEditor.test.tsx > YamlEditor > rendering > renders textarea with value 831ms βœ“ src/shared/components/YamlEditor.test.tsx > YamlEditor > rendering > renders disabled view as plain text 32ms βœ“ src/shared/components/YamlEditor.test.tsx > YamlEditor > rendering > renders dash when disabled and value is empty 97ms βœ“ src/shared/components/YamlEditor.test.tsx > YamlEditor > interaction > calls onChange on input 79ms βœ“ src/shared/components/YamlEditor.test.tsx > YamlEditor > interaction > shows error on invalid YAML 78ms βœ“ src/shared/components/YamlEditor.test.tsx > YamlEditor > interaction > clears error on valid YAML 132ms βœ“ src/shared/components/YamlEditor.test.tsx > YamlEditor > interaction > clears error when textarea is emptied 103ms (node:710) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) (node:733) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) (node:718) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) (node:725) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/lib/__tests__/onlineDetector.test.ts > OnlineDetector > isOnline > returns navigator.onLine value 30ms βœ“ src/lib/__tests__/onlineDetector.test.ts > OnlineDetector > isOnline > returns true when navigator is undefined (SSR safety) 10ms βœ“ src/lib/__tests__/onlineDetector.test.ts > OnlineDetector > subscribe > registers listener that is called on online event 12ms βœ“ src/lib/__tests__/onlineDetector.test.ts > OnlineDetector > subscribe > registers listener that is called on offline event 3ms βœ“ src/lib/__tests__/onlineDetector.test.ts > OnlineDetector > subscribe > calls all active listeners on event 3ms βœ“ src/lib/__tests__/onlineDetector.test.ts > OnlineDetector > subscribe > unsub prevents further calls 3ms βœ“ src/lib/__tests__/onlineDetector.test.ts > OnlineDetector > getOnlineDetector singleton > returns the same instance on every call 5ms stderr | src/features/auth/LoginPage.test.tsx > LoginPage > shows login heading, description and button ⚠️ React Router Future Flag Warning: React Router will begin wrapping state updates in `React.startTransition` in v7. You can use the `v7_startTransition` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_starttransition. ⚠️ React Router Future Flag Warning: Relative route resolution within Splat routes is changing in v7. You can use the `v7_relativeSplatPath` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_relativesplatpath. βœ“ src/features/auth/LoginPage.test.tsx > LoginPage > shows login heading, description and button 1672ms βœ“ src/layouts/healthStore.test.ts > healthStore > defaults > has healthy status by default 31ms βœ“ src/layouts/uiStore.test.ts > uiStore > defaults > has sidebar open by default 75ms βœ“ src/features/auth/LoginPage.test.tsx > LoginPage > shows session expired message when expired query param is set 399ms βœ“ src/layouts/uiStore.test.ts > uiStore > defaults > has dark theme by default 30ms βœ“ src/layouts/uiStore.test.ts > uiStore > toggleSidebar > closes sidebar when open 20ms βœ“ src/layouts/uiStore.test.ts > uiStore > toggleSidebar > opens sidebar when closed 10ms βœ“ src/layouts/uiStore.test.ts > uiStore > setSidebarOpen > sets sidebar to false 3ms βœ“ src/layouts/uiStore.test.ts > uiStore > setSidebarOpen > sets sidebar to true 18ms βœ“ src/layouts/uiStore.test.ts > uiStore > setTheme > sets theme to light 6ms βœ“ src/layouts/uiStore.test.ts > uiStore > setTheme > sets theme to high-contrast 5ms βœ“ src/layouts/uiStore.test.ts > uiStore > setTheme > sets theme to dark 15ms βœ“ src/layouts/healthStore.test.ts > healthStore > defaults > has null responseTime by default 14ms βœ“ src/layouts/healthStore.test.ts > healthStore > defaults > has null lastChecked by default 1ms βœ“ src/layouts/healthStore.test.ts > healthStore > defaults > has null apiVersion by default 14ms βœ“ src/layouts/healthStore.test.ts > healthStore > fetchHealth > sets healthy status on success 24ms βœ“ src/layouts/healthStore.test.ts > healthStore > fetchHealth > sets degraded status when services report issues 15ms βœ“ src/layouts/healthStore.test.ts > healthStore > fetchHealth > sets unhealthy status on network error 20ms βœ“ src/features/auth/LoginPage.test.tsx > LoginPage > does not show expired message without expired param 167ms βœ“ src/features/auth/LoginPage.test.tsx > LoginPage > shows error toast when error query param is set 61ms (node:743) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/layouts/uiStore.test.ts > uiStore > resetSession > restores defaults 19ms βœ“ src/features/auth/LoginPage.test.tsx > LoginPage > redirects to dashboard when already authenticated 146ms (node:750) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/shared/components/KeyValueEditor.test.tsx > KeyValueEditor > adds a blank row on [+ Add row] click 1463ms βœ“ src/features/auth/LoginPage.test.tsx > LoginPage > performs mock login in dev mode and navigates to dashboard 663ms βœ“ src/shared/components/KeyValueEditor.test.tsx > KeyValueEditor > removes a row and emits without it 989ms βœ“ src/features/auth/authStore.test.ts > authStore > starts unauthenticated 19ms βœ“ src/features/auth/authStore.test.ts > authStore > setAuth sets authenticated state with TTL fields 6ms βœ“ src/features/auth/authStore.test.ts > authStore > clearAuth clears all auth state including TTL fields 3ms βœ“ src/shared/components/KeyValueEditor.test.tsx > KeyValueEditor > shows duplicate key error but still emits onChange 576ms βœ“ src/shared/components/KeyValueEditor.test.tsx > KeyValueEditor > sanitizes empty keys from payload 292ms βœ“ src/shared/components/KeyValueEditor.test.tsx > KeyValueEditor > renders readOnly mode as static key: value lines 189ms βœ“ src/shared/components/KeyValueEditor.test.tsx > KeyValueEditor > shows empty state text when value is undefined in readOnly 18ms βœ“ src/shared/components/KeyValueEditor.test.tsx > KeyValueEditor > shows skeleton when isLoading 57ms (node:759) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/layers/__tests__/L2R/defaultAddNav.test.ts > createDefaultAddNavHandler > returns a function 48ms βœ“ src/layers/__tests__/L2R/defaultAddNav.test.ts > createDefaultAddNavHandler > calls navigate with createTarget when invoked 12ms βœ“ src/layers/__tests__/L2R/defaultAddNav.test.ts > createDefaultAddNavHandler > throws when invoked without createTarget (no fallback allowed) 7ms βœ“ src/layers/__tests__/L2R/defaultAddNav.test.ts > createDefaultAddNavHandler > calls navigate with the exact createTarget string when set 2ms βœ“ src/layers/__tests__/L2R/defaultAddNav.test.ts > createDefaultAddNavHandler > empty-string createTarget is treated as missing (throws) 3ms (node:766) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) (node:774) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/shared/components/DiscardDialog.test.tsx > DiscardDialog > does not render when closed 944ms βœ“ src/shared/components/DiscardDialog.test.tsx > DiscardDialog > renders with default title and description 1368ms βœ“ src/shared/components/Page.test.tsx > PageHeader > renders title 485ms βœ“ src/features/bot-accounts/botAccountsCrudConfig.test.ts > botAccountsCrudConfig > fieldSet validations > name requires 3-100 characters 19ms βœ“ src/features/bot-accounts/botAccountsCrudConfig.test.ts > botAccountsCrudConfig > fieldSet validations > description allows max 5000 characters 3ms βœ“ src/features/bot-accounts/botAccountsCrudConfig.test.ts > botAccountsCrudConfig > fieldSet validations > token_encrypted has description hint 3ms βœ“ src/features/bot-accounts/botAccountsCrudConfig.test.ts > botAccountsCrudConfig > fieldTypes > description is textarea 2ms βœ“ src/features/bot-accounts/botAccountsCrudConfig.test.ts > botAccountsCrudConfig > fieldTypes > token_encrypted is password 1ms βœ“ src/shared/components/DiscardDialog.test.tsx > DiscardDialog > calls onDiscard when Discard button clicked 478ms βœ“ src/shared/components/DiscardDialog.test.tsx > DiscardDialog > calls onKeepEditing when Keep Editing button clicked 476ms (node:790) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/shared/components/Page.test.tsx > PageHeader > renders breadcrumbs 172ms βœ“ src/shared/components/Page.test.tsx > PageHeader > renders actions slot 945ms βœ“ src/shared/components/DiscardDialog.test.tsx > DiscardDialog > renders custom title and description 339ms βœ“ src/shared/components/Page.test.tsx > Page > renders children 98ms βœ“ src/shared/components/Page.test.tsx > Page > passes className to root div 45ms βœ“ src/shared/components/DiscardDialog.test.tsx > DiscardDialog > calls onKeepEditing on dialog dismiss (ESC) 317ms βœ“ src/shared/components/Page.test.tsx > Page > renders header slot 83ms βœ“ src/shared/components/TokenDisplay.test.tsx > TokenDisplay > renders 0 as "0" 247ms βœ“ src/shared/components/TokenDisplay.test.tsx > TokenDisplay > renders 500 as "500" 15ms βœ“ src/shared/components/TokenDisplay.test.tsx > TokenDisplay > renders 1500 as "1.5K" 34ms βœ“ src/shared/components/TokenDisplay.test.tsx > TokenDisplay > renders 890123 as "890.1K" 33ms βœ“ src/shared/components/TokenDisplay.test.tsx > TokenDisplay > renders 1234567 as "1.2M" 34ms βœ“ src/shared/components/TokenDisplay.test.tsx > TokenDisplay > renders 999500 as "999.5K" 29ms βœ“ src/shared/components/TokenDisplay.test.tsx > TokenDisplay > renders with label when provided 67ms (node:797) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) (node:812) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/shared/components/ConfirmDialog.test.tsx > ConfirmDialog > renders with title and message 2120ms (node:783) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) (node:821) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) (node:806) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/shared/components/ConfirmDialog.test.tsx > ConfirmDialog > calls onConfirm when confirm button is clicked 710ms βœ“ src/shared/components/ConfirmDialog.test.tsx > ConfirmDialog > calls onCancel when cancel button is clicked 703ms βœ“ src/shared/components/ConfirmDialog.test.tsx > ConfirmDialog > does not render when closed 55ms (node:828) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/shared/components/DurationDisplay.test.tsx > DurationDisplay > renders 0ms as "0s" 269ms βœ“ src/shared/components/DurationDisplay.test.tsx > DurationDisplay > renders 5000ms as "5s" 32ms βœ“ src/shared/components/DurationDisplay.test.tsx > DurationDisplay > renders 65000ms as "1m 5s" 30ms βœ“ src/shared/components/DurationDisplay.test.tsx > DurationDisplay > renders 3661000ms as "1h 1m" 20ms βœ“ src/shared/components/DurationDisplay.test.tsx > DurationDisplay > renders 3723000ms as "1h 2m" 35ms βœ“ src/shared/components/DurationDisplay.test.tsx > DurationDisplay > renders null as "β€”" 17ms βœ“ src/layers/__tests__/architecture-contracts.test.ts > architecture contracts > type-level assertions are verified by npm run typecheck:arch 55ms βœ“ src/shared/components/Breadcrumb.test.tsx > Breadcrumb > renders items with separators 231ms βœ“ src/shared/components/Breadcrumb.test.tsx > Breadcrumb > renders links for items with href 875ms βœ“ src/shared/components/Breadcrumb.test.tsx > Breadcrumb > renders last item as plain text 49ms βœ“ src/shared/components/StatsCard.test.tsx > StatsCard > renders label and value 343ms βœ“ src/shared/components/StatsCard.test.tsx > StatsCard > renders large values with abbreviation 49ms βœ“ src/shared/components/StatsCard.test.tsx > StatsCard > renders accent color border 43ms βœ“ src/shared/components/RunPhaseIcon.test.tsx > RunPhaseIcon > renders pending with correct label 249ms βœ“ src/shared/components/RunPhaseIcon.test.tsx > RunPhaseIcon > renders running with correct label 16ms βœ“ src/shared/components/RunPhaseIcon.test.tsx > RunPhaseIcon > renders succeeded with correct label 30ms βœ“ src/shared/components/RunPhaseIcon.test.tsx > RunPhaseIcon > renders failed with correct label 12ms (node:839) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) βœ“ src/shared/components/SourceBadge.test.tsx > SourceBadge > renders manual badge 280ms βœ“ src/shared/components/SourceBadge.test.tsx > SourceBadge > renders webhook badge 14ms βœ“ src/shared/components/SourceBadge.test.tsx > SourceBadge > renders schedule badge 25ms βœ“ src/shared/components/SourceBadge.test.tsx > SourceBadge > renders api badge 15ms (node:847) ExperimentalWarning: localStorage is not available because --localstorage-file was not provided. (Use `node --trace-warnings ...` to show where the warning was created) stderr | src/shared/components/ErrorBoundary.test.tsx > ErrorBoundary > renders fallback on error Error: kaboom at Bomb (/workspace/niko/agent-platform/frontend/src/shared/components/ErrorBoundary.test.tsx:6:9) at Object.react_stack_bottom_frame (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:25904:20) at renderWithHooks (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:7662:22) at updateFunctionComponent (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:10166:19) at beginWork (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:11778:18) at runWithFiberInDEV (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:874:13) at performUnitOfWork (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:17641:22) at workLoopSync (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:17469:41) at renderRootSync (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:17450:11) at performWorkOnRoot (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:16583:35) { [stack]: [Getter/Setter], [message]: 'kaboom' } The above error occurred in the component. React will try to recreate this component tree from scratch using the error boundary you provided, ErrorBoundary. ErrorBoundary caught: Error: kaboom at Bomb (/workspace/niko/agent-platform/frontend/src/shared/components/ErrorBoundary.test.tsx:6:9) at Object.react_stack_bottom_frame (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:25904:20) at renderWithHooks (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:7662:22) at updateFunctionComponent (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:10166:19) at beginWork (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:11778:18) at runWithFiberInDEV (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:874:13) at performUnitOfWork (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:17641:22) at workLoopSync (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:17469:41) at renderRootSync (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:17450:11) at performWorkOnRoot (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:16583:35) { componentStack: '\n' + ' at Bomb (/workspace/niko/agent-platform/frontend/src/shared/components/ErrorBoundary.test.tsx:11:8)\n' + ' at ErrorBoundary (/workspace/niko/agent-platform/frontend/src/shared/components/ErrorBoundary.tsx:10:1)' } βœ“ src/shared/components/ErrorBoundary.test.tsx > ErrorBoundary > renders children when no error 199ms βœ“ src/shared/components/ErrorBoundary.test.tsx > ErrorBoundary > renders fallback on error 159ms stderr | src/App.test.tsx > App > shows login page when unauthenticated ⚠️ React Router Future Flag Warning: React Router will begin wrapping state updates in `React.startTransition` in v7. You can use the `v7_startTransition` future flag to opt-in early. For more information, see https://reactrouter.com/v6/upgrading/future#v7_starttransition. stderr | src/App.test.tsx > App > shows login page when unauthenticated ReferenceError: indexedDB is not defined at getDB (file:///workspace/node_modules/idb-keyval/dist/index.js:14:25) at file:///workspace/node_modules/idb-keyval/dist/index.js:24:34 at Object.get [as getItem] (file:///workspace/node_modules/idb-keyval/dist/index.js:40:12) at Object.restoreClient (file:///workspace/node_modules/@tanstack/query-async-storage-persister/build/modern/index.js:43:43) at persistQueryClientRestore (file:///workspace/node_modules/@tanstack/query-persist-client-core/build/modern/persist.js:15:45) at file:///workspace/node_modules/@tanstack/react-query-persist-client/build/modern/PersistQueryClientProvider.js:31:7 at Object.react_stack_bottom_frame (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:25989:20) at runWithFiberInDEV (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:874:13) at commitHookEffectListMount (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:13249:29) at commitHookPassiveMountEffects (/workspace/node_modules/react-dom/cjs/react-dom-client.development.js:13336:11) Encountered an error attempting to restore client cache from persisted location. As a precaution, the persisted cache will be discarded. βœ“ src/App.test.tsx > App > shows login page when unauthenticated 958ms  Test Files  65 passed (65)  Tests  705 passed | 2 skipped (707)  Start at  05:03:43  Duration  96.88s (transform 36.97s, setup 261.28s, import 126.61s, tests 151.33s, environment 272.15s) JUNIT report written to /workspace/niko/agent-platform/reports/front-unit/junit.xml  % Coverage report from v8 -------------------|---------|----------|---------|---------|------------------- File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s -------------------|---------|----------|---------|---------|------------------- All files | 67.47 | 59.18 | 61.31 | 68.73 | src | 39.39 | 50 | 50 | 39.39 | App.tsx | 61.53 | 83.33 | 60 | 61.53 | 56-61 main.tsx | 0 | 0 | 0 | 0 | 8-34 router.tsx | 66.66 | 100 | 50 | 66.66 | 41-42 version.ts | 100 | 100 | 100 | 100 | src/components/ui | 69.69 | 80 | 67.74 | 69.69 | button.tsx | 100 | 66.66 | 100 | 100 | 52 card.tsx | 28.57 | 100 | 28.57 | 28.57 | 24-60,83 dialog.tsx | 80 | 83.33 | 80 | 80 | 17,29 skeleton.tsx | 100 | 100 | 100 | 100 | table.tsx | 75 | 100 | 75 | 75 | 41,96 tabs.tsx | 75 | 100 | 75 | 75 | 55 src/features/auth | 42.85 | 42.52 | 51.16 | 44.53 | AuthGuard.tsx | 87.5 | 50 | 100 | 85.71 | 20 CallbackPage.tsx | 95.65 | 66.66 | 90 | 100 | 19-22 LoginPage.tsx | 62.79 | 65.78 | 80 | 64.1 | 57-83 ...onMonitor.tsx | 4.34 | 0 | 0 | 5.08 | 11-104 authStore.ts | 100 | 100 | 100 | 100 | ...s/bot-accounts | 100 | 54.54 | 100 | 100 | ...etailPage.tsx | 100 | 42.85 | 100 | 100 | 10-18 ...tsListTab.tsx | 100 | 75 | 100 | 100 | 30 ...CrudConfig.ts | 100 | 100 | 100 | 100 | routes.tsx | 100 | 100 | 100 | 100 | ...ures/dashboard | 3.57 | 0 | 0 | 3.7 | ...boardPage.tsx | 0 | 0 | 0 | 0 | 11-115 StatsCardRow.tsx | 7.4 | 0 | 0 | 7.4 | 9-18,25-82 ...eatures/errors | 0 | 100 | 0 | 0 | NotFoundPage.tsx | 0 | 100 | 0 | 0 | 5-11 ...es/llm-configs | 13.63 | 0 | 0 | 15 | ...etailPage.tsx | 0 | 0 | 0 | 0 | 9-49 ...sListPage.tsx | 0 | 0 | 0 | 0 | 7-54 ...CrudConfig.ts | 100 | 100 | 100 | 100 | routes.tsx | 100 | 100 | 100 | 100 | ...ures/pipelines | 5.55 | 0 | 0 | 6.06 | ...etailPage.tsx | 0 | 0 | 0 | 0 | 13-175 RunNowButton.tsx | 0 | 0 | 0 | 0 | 8-31 ...CrudConfig.ts | 100 | 100 | 100 | 100 | routes.tsx | 100 | 100 | 100 | 100 | ...oryOptions.ts | 0 | 0 | 0 | 0 | 14-34 ...tures/projects | 8.82 | 0 | 0 | 8.82 | ...etailPage.tsx | 0 | 0 | 0 | 0 | 13-145 ProjectsPage.tsx | 0 | 0 | 0 | 0 | 7-32 ...CrudConfig.ts | 100 | 100 | 100 | 100 | routes.tsx | 100 | 100 | 100 | 100 | ...s/repositories | 59.52 | 40 | 58.82 | 60.52 | ...oriesList.tsx | 100 | 100 | 100 | 100 | ...oriesPage.tsx | 100 | 100 | 100 | 100 | ...etailPage.tsx | 0 | 0 | 0 | 0 | 9-60 ...CrudConfig.ts | 100 | 100 | 100 | 100 | routes.tsx | 100 | 100 | 100 | 100 | src/features/runs | 2.45 | 0 | 0 | 2.72 | ...etailPage.tsx | 2.4 | 0 | 0 | 2.73 | 18-261 ...ailPanels.tsx | 0 | 0 | 0 | 0 | 20-115 RunsPage.tsx | 0 | 0 | 0 | 0 | 11-157 routes.tsx | 100 | 100 | 100 | 100 | ...tures/settings | 12.5 | 100 | 0 | 16.66 | SettingsPage.tsx | 12.5 | 100 | 0 | 16.66 | 10-29 src/layers | 0 | 0 | 0 | 0 | interfaces.ts | 0 | 0 | 0 | 0 | src/layers/L1 | 82.35 | 69.96 | 81.13 | 85.22 | entityHooks.ts | 80.63 | 67.44 | 75 | 83.59 | ...06-721,725-728 ...tyResolver.ts | 54.54 | 50 | 71.42 | 66.66 | 32-34 index.ts | 0 | 0 | 0 | 0 | mutationQueue.ts | 100 | 100 | 100 | 100 | refCountStore.ts | 100 | 100 | 100 | 100 | useDataAge.ts | 82.85 | 60 | 100 | 83.87 | 43-47 ...s/L1/contracts | 55.31 | 80 | 25 | 54.34 | bot-accounts.ts | 20 | 100 | 0 | 20 | 18-25 index.ts | 100 | 100 | 100 | 100 | llm-configs.ts | 20 | 100 | 0 | 20 | 18-25 pipelines.ts | 16.66 | 0 | 0 | 16.66 | 18-27 projects.ts | 80.95 | 100 | 50 | 80 | 61-68 repositories.ts | 60 | 100 | 50 | 60 | 24-25 runs.ts | 50 | 100 | 33.33 | 50 | 18,24 src/layers/L2R | 0 | 0 | 0 | 0 | index.ts | 0 | 0 | 0 | 0 | ...yers/L2R/slots | 77.47 | 75 | 70.37 | 78.87 | ...Indicator.tsx | 100 | 100 | 100 | 100 | Crud.tsx | 93.75 | 76.59 | 100 | 93.61 | 44,77-78 DataTable.tsx | 69.36 | 72.97 | 60 | 71.15 | ...28,400,421-427 EntityDetail.tsx | 91.66 | 62.5 | 100 | 91.66 | 38 Page.tsx | 100 | 88.88 | 100 | 100 | 27 ...s/L2R/surfaces | 81.84 | 74.29 | 83.6 | 82.47 | CrudSurface.tsx | 64.96 | 56.86 | 64.28 | 64.95 | ...34,296,363-364 ...ilSurface.tsx | 100 | 86 | 100 | 100 | 40-61,82,111,125 FilterBar.tsx | 95.83 | 96.87 | 100 | 95.83 | 127 ListSurface.tsx | 95.23 | 90.47 | 100 | 97.05 | 87,94 ...ers/L2R/wiring | 100 | 100 | 100 | 100 | defaultAddNav.ts | 100 | 100 | 100 | 100 | ...ultEditNav.ts | 100 | 100 | 100 | 100 | defaultRowNav.ts | 100 | 100 | 100 | 100 | src/layers/L2W | 87.16 | 84.61 | 85.36 | 88.5 | ...orContract.ts | 100 | 100 | 100 | 100 | coordinator.ts | 94.59 | 87.95 | 92.59 | 96.35 | ...99-200,232-236 ...orResolver.ts | 5.88 | 0 | 0 | 6.25 | 11-15,24-53 formBridge.ts | 100 | 100 | 100 | 100 | index.ts | 0 | 0 | 0 | 0 | ...ers/L2W/routes | 100 | 83.33 | 100 | 100 | CrudRoute.tsx | 100 | 83.33 | 100 | 100 | 18 ...ntextStore.ts | 100 | 100 | 100 | 100 | src/layouts | 24.05 | 5.55 | 26.47 | 26.15 | AppLayout.tsx | 3.22 | 2.94 | 0 | 4 | 20-244 healthStore.ts | 100 | 50 | 100 | 100 | 27 uiStore.ts | 100 | 100 | 100 | 100 | src/lib | 70.71 | 48.43 | 66.66 | 70.73 | axios.ts | 16.66 | 0 | 0 | 16.66 | 18-24,28-42 env.ts | 50 | 0 | 0 | 50 | 7 ...tionOutbox.ts | 61.53 | 50 | 47.82 | 63.41 | ...59-162,206-220 ...neDetector.ts | 100 | 83.33 | 100 | 100 | 8 query-client.ts | 100 | 100 | 100 | 100 | ...heEviction.ts | 100 | 100 | 100 | 100 | ...yPersister.ts | 100 | 100 | 100 | 100 | ...flineState.ts | 94.11 | 75 | 87.5 | 93.1 | 58-59 utils.ts | 100 | 100 | 100 | 100 | ...red/components | 83.33 | 79.04 | 83.2 | 83.69 | Breadcrumb.tsx | 100 | 100 | 100 | 100 | ...andSearch.tsx | 5.55 | 0 | 0 | 5.88 | 18-60 ...irmDialog.tsx | 50 | 50 | 50 | 50 | 31 CrudModal.tsx | 84.61 | 86.66 | 85.71 | 84.61 | 52-53 CrudReadCard.tsx | 95.23 | 94.87 | 80 | 95.23 | 219 ...ardDialog.tsx | 100 | 100 | 100 | 100 | ...onDisplay.tsx | 100 | 80 | 100 | 100 | 10-13 EntitySelect.tsx | 75.53 | 70.93 | 73.07 | 76.19 | ...16-218,250-262 ...electList.tsx | 90.14 | 76.74 | 100 | 93.1 | 29,80-81,107 ...rBoundary.tsx | 75 | 100 | 75 | 75 | 40-41 ...lueEditor.tsx | 100 | 93.75 | 100 | 100 | 55,141 LazyLoader.tsx | 100 | 100 | 100 | 100 | LogoMark.tsx | 0 | 0 | 0 | 0 | 7 MetadataCard.tsx | 100 | 94.44 | 100 | 100 | 32 Page.tsx | 100 | 100 | 100 | 100 | ...ransition.tsx | 0 | 100 | 0 | 0 | 4-5 RunPhaseIcon.tsx | 100 | 100 | 100 | 100 | SourceBadge.tsx | 100 | 100 | 100 | 100 | StatsCard.tsx | 57.14 | 44.44 | 50 | 57.14 | 35-37 Toaster.tsx | 100 | 100 | 100 | 100 | TokenDisplay.tsx | 100 | 90 | 100 | 100 | 9 YamlEditor.tsx | 100 | 90.9 | 100 | 100 | 17 src/shared/hooks | 99.21 | 91.83 | 100 | 100 | useDirtyGuard.ts | 100 | 100 | 100 | 100 | ...ilterState.ts | 100 | 93.33 | 100 | 100 | 24,29 useSSE.ts | 98.38 | 77.77 | 100 | 100 | 48,98 src/shared/utils | 64.51 | 44.44 | 66.66 | 81.81 | format.ts | 64.51 | 44.44 | 66.66 | 81.81 | 13-16 -------------------|---------|----------|---------|---------|-------------------