test(e2e): kanban + calendar object-view regression guards (#2059) - #2109
Merged
Conversation
Two @e2e-tagged specs for openspec/specs/saved-search-views/spec.md: - api-direct/search-views-presentation.spec.ts — REST contract: presentation persistence round-trip, GET /views/:id/kanban board shape (columns in columnOrder + cards), guarded object-write 'move', GET /views/:id/calendar range query, and rejection of an unrenderable groupByField. - spec-coverage/object-views-kanban-calendar.spec.ts — genuine browser render: seeds a register/schema/objects + kanban & calendar views, activates each via the store-injection technique (walks the Vue tree to SearchIndex, calls viewsStore.setActiveView, awaits nextTick), asserts CnObjectKanban paints columns/cards and CnObjectCalendar plots objects on their dueDate, with zero OR-origin console errors (core-NC noise filtered). Guards the runtime-render class the mocked jest unit tests cannot catch. Satisfies hydra-gate-e2e-coverage for the REQ-VIEW-* scenarios. Behaviour was live-verified in a disposable NC34+Postgres container during phase 2b.
Contributor
Quality Report — ConductionNL/openregister @
|
| Check | PHP | Vue | Security | License | Tests |
|---|---|---|---|---|---|
| lint | ✅ | ||||
| phpcs | ✅ | ||||
| phpmd | ✅ | ||||
| psalm | ✅ | ||||
| phpstan | ✅ | ||||
| phpmetrics | ✅ | ||||
| eslint | ✅ | ||||
| stylelint | ✅ | ||||
| composer | ✅ | ✅ 174/174 | |||
| npm | ✅ | ✅ 555/555 | |||
| PHPUnit | ❌ | ||||
| Newman | ❌ | ||||
| Playwright | ⏭️ |
Quality workflow — 2026-07-25 10:20 UTC
Download the full PDF report from the workflow artifacts.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds the e2e regression coverage for the kanban/calendar object views (shipped in #2063/#2098), both tagged
@e2e openspec/specs/saved-search-views/spec.mdso hydra-gate-e2e-coverage flags any future change to the REQ-VIEW-* scenarios.GET /views/:id/kanbanboard shape (columns in columnOrder + cards), the guarded object-write path driving a kanban 'move',GET /views/:id/calendarrange query, and rejection of an unrenderable groupByField.CnObjectKanbanpaints columns/cards andCnObjectCalendarplots objects by date with zero OR-origin console errors. Guards the runtime-render class the mocked jest unit tests can't catch.Both parse under
playwright test --list; the behaviour was live-verified in a disposable NC34+Postgres container during phase 2b. (Note: openregister's CI does not currentlyenable-playwright, so these run on-demand / via the e2e-coverage gate rather than the automated playwright job — matching the repo's existing api-direct convention.)