Add os-select and os-toggle widget contracts with thin Playwright handlers#35
Open
danielbdyer wants to merge 1 commit into
Open
Add os-select and os-toggle widget contracts with thin Playwright handlers#35danielbdyer wants to merge 1 commit into
danielbdyer wants to merge 1 commit into
Conversation
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.
Motivation
Description
WidgetCapabilityContractentries:os-selectandos-toggle, and registered them in the contract registry (lib/domain/widgets/contracts.ts).osSelectHandlersandosToggleHandlers(lib/runtime/widgets/os-select.ts,lib/runtime/widgets/os-toggle.ts) and wired them into the runtime handler registry (lib/runtime/widgets/index.ts).combobox/select inputs resolve toos-selectandcheckbox/radio/switchresolve toos-toggle, and aligned supported-action mappings (lib/domain/discovery.ts).engage/enterflows include structured metadata in execution receipts by returninglocatorStrategy,locatorRung, andwidgetContractfor enter outcomes in addition to observed effects (lib/runtime/engage.ts).tests/widget-contracts.spec.ts, updates totests/runtime-errors.spec.ts).docs/authoring.md, regeneratedlib/generated/tesseract-knowledge.*).Testing
npm run typesto regenerate types and projection artifacts and it completed successfully.npm test -- tests/widget-contracts.spec.ts tests/runtime-errors.spec.tsand observed all tests in that run passed (15 passed).npm testand observed the suite complete successfully with the test summary showing118 passed, 2 skipped.Codex Task