Problem
The apply test in apps/webapp/cypress/e2e/editor/filter/filter-apply-and-restore.cy.js has most likely never passed. It has two separate causes:
FilterPanel pushes /editor/<q>. Next routes that to the [...slugs] catch-all, and isReservedSlug('editor') returns notFound. editor became reserved in 7d8ca5257 (2026-06-15), and the spec landed in 30c2be918 (2026-06-17).
useApplyFilters runs only through useEditorAndProvider. EditorPlayground never mounts it, so .heading-fold-hidden never appears on the playground.
Fix
Pick one:
- Move the apply test to a real pad, or
- Skip it until the playground supports filtering.
Do not change the production push in FilterPanel to suit a test harness.
Related: #276.
Problem
The apply test in
apps/webapp/cypress/e2e/editor/filter/filter-apply-and-restore.cy.jshas most likely never passed. It has two separate causes:FilterPanelpushes/editor/<q>. Next routes that to the[...slugs]catch-all, andisReservedSlug('editor')returnsnotFound.editorbecame reserved in7d8ca5257(2026-06-15), and the spec landed in30c2be918(2026-06-17).useApplyFiltersruns only throughuseEditorAndProvider.EditorPlaygroundnever mounts it, so.heading-fold-hiddennever appears on the playground.Fix
Pick one:
Do not change the production push in
FilterPanelto suit a test harness.Related: #276.