Merge branch 'worktree-zero-tooling-essay' into macros

This commit is contained in:
2026-03-08 01:53:32 +00:00
4 changed files with 241 additions and 0 deletions

View File

@@ -126,6 +126,7 @@
(dict :label "Renderer" :href "/testing/render")
(dict :label "Dependencies" :href "/testing/deps")
(dict :label "Engine" :href "/testing/engine")
(dict :label "Orchestration" :href "/testing/orchestration")
(dict :label "Runners" :href "/testing/runners")))
(define isomorphism-nav-items (list

View File

@@ -649,6 +649,7 @@
"render" (run-modular-tests "render")
"deps" (run-modular-tests "deps")
"engine" (run-modular-tests "engine")
"orchestration" (run-modular-tests "orchestration")
:else (dict))
:content (case slug
"eval" (~testing-spec-content
@@ -693,6 +694,13 @@
:spec-source spec-source
:framework-source framework-source
:server-results server-results)
"orchestration" (~testing-spec-content
:spec-name "orchestration"
:spec-title "Orchestration Tests"
:spec-desc "17 tests covering Phase 7c+7d orchestration — page data cache, optimistic cache update/revert/confirm, offline connectivity, offline queue mutation, and offline-aware routing."
:spec-source spec-source
:framework-source framework-source
:server-results server-results)
"runners" (~testing-runners-content)
:else (~testing-overview-content
:server-results server-results)))