@synetics/ui 0.7.0-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env +3 -0
- package/.eslintrc.cjs +83 -0
- package/.eslintrc.json +53 -0
- package/.github/workflows/deploy.yml +7 -0
- package/.turbo/turbo-build.log +3 -0
- package/CONTRIBUTING.md +47 -0
- package/FIXES-IMPLEMENTATION-LOG.md +180 -0
- package/LICENSE +21 -0
- package/README.md +414 -0
- package/ROADMAP.md +112 -0
- package/TEST-DOCUMENTATION.md +67 -0
- package/TEST-FAILURE-ANALYSIS.md +326 -0
- package/console-mirror.html +79 -0
- package/control-flow-transformed.js +10129 -0
- package/daily-push.log +9 -0
- package/debug-router.html +54 -0
- package/debug-screenshot.png +0 -0
- package/dev-error.log +84 -0
- package/dev-output.log +10689 -0
- package/docs/README.md +527 -0
- package/e2e-results.txt +0 -0
- package/error-boundary-output.js +353 -0
- package/final-test.txt +2816 -0
- package/index.html +41 -0
- package/latest-test.txt +2900 -0
- package/package.json +68 -0
- package/parse-debug.txt +10 -0
- package/ping.txt +1 -0
- package/playwright.config.ts +25 -0
- package/postcss.config.js +6 -0
- package/pre-validation-code.js +25 -0
- package/reactivity-output.txt +0 -0
- package/reactivity-page.html +0 -0
- package/return-parse-test.txt +139 -0
- package/run-psr-test.ps1 +65 -0
- package/src/README.md +138 -0
- package/src/components/app-footer.syn +17 -0
- package/src/components/app-header.syn +43 -0
- package/src/components/atoms/avatar/avatar-simple.syn +25 -0
- package/src/components/atoms/avatar/avatar.syn +86 -0
- package/src/components/atoms/avatar/avatar.type.ts +39 -0
- package/src/components/atoms/avatar/index.ts +7 -0
- package/src/components/atoms/checkbox/checkbox.syn +72 -0
- package/src/components/atoms/checkbox/checkbox.type.ts +25 -0
- package/src/components/atoms/checkbox/index.ts +6 -0
- package/src/components/atoms/container/container.syn +53 -0
- package/src/components/atoms/container/container.type.ts +32 -0
- package/src/components/atoms/container/index.ts +7 -0
- package/src/components/atoms/divider/divider.syn +45 -0
- package/src/components/atoms/divider/divider.type.ts +24 -0
- package/src/components/atoms/divider/index.ts +7 -0
- package/src/components/atoms/grid/grid.syn +56 -0
- package/src/components/atoms/grid/grid.type.ts +44 -0
- package/src/components/atoms/grid/index.ts +7 -0
- package/src/components/atoms/icon/icon.syn +0 -0
- package/src/components/atoms/icon/icon.type.ts +5 -0
- package/src/components/atoms/input/index.ts +6 -0
- package/src/components/atoms/input/input.syn +75 -0
- package/src/components/atoms/input/input.type.ts +29 -0
- package/src/components/atoms/progress/index.ts +7 -0
- package/src/components/atoms/progress/progress.syn +68 -0
- package/src/components/atoms/progress/progress.type.ts +48 -0
- package/src/components/atoms/radio/index.ts +6 -0
- package/src/components/atoms/radio/radio.syn +72 -0
- package/src/components/atoms/radio/radio.type.ts +31 -0
- package/src/components/atoms/rating/index.ts +6 -0
- package/src/components/atoms/rating/rating.syn +119 -0
- package/src/components/atoms/rating/rating.type.ts +53 -0
- package/src/components/atoms/skeleton/index.ts +6 -0
- package/src/components/atoms/skeleton/skeleton.syn +31 -0
- package/src/components/atoms/skeleton/skeleton.type.ts +12 -0
- package/src/components/atoms/slider/index.ts +6 -0
- package/src/components/atoms/slider/slider.syn +101 -0
- package/src/components/atoms/slider/slider.type.ts +54 -0
- package/src/components/atoms/spinner/index.ts +6 -0
- package/src/components/atoms/spinner/spinner.syn +39 -0
- package/src/components/atoms/spinner/spinner.type.ts +40 -0
- package/src/components/atoms/stack/index.ts +7 -0
- package/src/components/atoms/stack/stack.syn +79 -0
- package/src/components/atoms/stack/stack.type.ts +42 -0
- package/src/components/atoms/textarea/index.ts +6 -0
- package/src/components/atoms/textarea/textarea.syn +78 -0
- package/src/components/atoms/textarea/textarea.type.ts +28 -0
- package/src/components/atoms/toggle/index.ts +6 -0
- package/src/components/atoms/toggle/toggle.syn +69 -0
- package/src/components/atoms/toggle/toggle.type.ts +27 -0
- package/src/components/atoms/tooltip/index.ts +5 -0
- package/src/components/atoms/tooltip/tooltip.syn +83 -0
- package/src/components/atoms/tooltip/tooltip.type.ts +36 -0
- package/src/components/atoms/typography/index.ts +6 -0
- package/src/components/atoms/typography/typography.syn +113 -0
- package/src/components/atoms/typography/typography.type.ts +36 -0
- package/src/components/enums/alert-variant.type.ts +5 -0
- package/src/components/enums/avatar-size.type.ts +5 -0
- package/src/components/enums/button-type.type.ts +5 -0
- package/src/components/enums/container-max-width.type.ts +5 -0
- package/src/components/enums/container-padding.type.ts +5 -0
- package/src/components/enums/divider-orientation.type.ts +5 -0
- package/src/components/enums/drawer-placement.type.ts +5 -0
- package/src/components/enums/drawer-size.type.ts +5 -0
- package/src/components/enums/icon-position.type.ts +5 -0
- package/src/components/enums/index.ts +27 -0
- package/src/components/enums/input-type.type.ts +5 -0
- package/src/components/enums/modal-size.type.ts +5 -0
- package/src/components/enums/popover-placement.type.ts +5 -0
- package/src/components/enums/popover-trigger.type.ts +5 -0
- package/src/components/enums/progress-size.type.ts +5 -0
- package/src/components/enums/progress-variant.type.ts +5 -0
- package/src/components/enums/readme.md +1 -0
- package/src/components/enums/spacing.type.ts +5 -0
- package/src/components/enums/stack-align.type.ts +5 -0
- package/src/components/enums/stack-justify.type.ts +11 -0
- package/src/components/enums/toast-position.type.ts +11 -0
- package/src/components/enums/toast-variant.type.ts +5 -0
- package/src/components/enums/tooltip-placement.type.ts +5 -0
- package/src/components/enums/typography-tag.type.ts +5 -0
- package/src/components/enums/typography-variant.type.ts +5 -0
- package/src/components/formular/components/debug/form-data-display.syn +155 -0
- package/src/components/formular/components/examples/advanced-text-field.syn +211 -0
- package/src/components/formular/components/form-context/form-context.ts +15 -0
- package/src/components/formular/components/form-context/index.ts +6 -0
- package/src/components/formular/components/form-context/use-form-context.ts +31 -0
- package/src/components/formular/components/form-provider/form-provider.syn +182 -0
- package/src/components/formular/components/form-provider/index.ts +5 -0
- package/src/components/formular/components/index.ts +20 -0
- package/src/components/formular/components/integrated/checkbox-field.syn +50 -0
- package/src/components/formular/components/integrated/checkbox.syn +53 -0
- package/src/components/formular/components/integrated/index.ts +21 -0
- package/src/components/formular/components/integrated/input-field.syn +51 -0
- package/src/components/formular/components/integrated/radio-group-field.syn +68 -0
- package/src/components/formular/components/integrated/radio-group.syn +63 -0
- package/src/components/formular/components/integrated/select-field.syn +51 -0
- package/src/components/formular/components/integrated/select-input.syn +73 -0
- package/src/components/formular/components/integrated/text-field.syn +49 -0
- package/src/components/formular/components/integrated/textarea-field.syn +51 -0
- package/src/components/formular/components/integrated/textarea-input.syn +73 -0
- package/src/components/formular/components/integrated/toggle-field.syn +50 -0
- package/src/components/formular/components/integrated/toggle.syn +53 -0
- package/src/components/formular/components/modal/error-message.syn +21 -0
- package/src/components/formular/components/modal/form-modale.syn +44 -0
- package/src/components/formular/components/modal/form-validation-results.syn +46 -0
- package/src/components/formular/components/modal/guide-message.syn +21 -0
- package/src/components/formular/components/modal/index.ts +10 -0
- package/src/components/formular/components/modal/use-modale.ts +82 -0
- package/src/components/formular/components/modal/validation-results.syn +63 -0
- package/src/components/formular/components/primitives/f-checkbox-field.syn +50 -0
- package/src/components/formular/components/primitives/f-input-field.syn +77 -0
- package/src/components/formular/components/primitives/f-radio-button.syn +64 -0
- package/src/components/formular/components/primitives/f-select-field.syn +61 -0
- package/src/components/formular/components/primitives/f-textarea-field.syn +53 -0
- package/src/components/formular/components/primitives/f-toggle-field.syn +50 -0
- package/src/components/formular/components/primitives/field-label.syn +49 -0
- package/src/components/formular/components/primitives/helper-text.syn +32 -0
- package/src/components/formular/components/primitives/index.ts +32 -0
- package/src/components/formular/components/primitives/validation-results.syn +76 -0
- package/src/components/formular/hooks/bindings/field-bindings.type.ts +58 -0
- package/src/components/formular/hooks/bindings/index.ts +16 -0
- package/src/components/formular/hooks/bindings/use-checkbox-bind.ts +31 -0
- package/src/components/formular/hooks/bindings/use-input-bind.ts +31 -0
- package/src/components/formular/hooks/bindings/use-radio-bind.ts +39 -0
- package/src/components/formular/hooks/bindings/use-select-bind.ts +32 -0
- package/src/components/formular/hooks/bindings/use-textarea-bind.ts +31 -0
- package/src/components/formular/hooks/bindings/use-toggle-bind.ts +31 -0
- package/src/components/formular/hooks/index.ts +28 -0
- package/src/components/formular/hooks/use-field-validation.ts +42 -0
- package/src/components/formular/hooks/use-field.ts +282 -0
- package/src/components/formular/hooks/use-formular-signal.ts +29 -0
- package/src/components/formular/index.ts +3 -0
- package/src/components/formular/types/field-component.type.ts +78 -0
- package/src/components/formular/types/field-descriptor-config.type.ts +79 -0
- package/src/components/formular/types/form-context.type.ts +67 -0
- package/src/components/formular/types/form-provider.type.ts +67 -0
- package/src/components/formular/types/formular.types.ts +49 -0
- package/src/components/formular/types/index.ts +78 -0
- package/src/components/formular/types/portal.type.ts +36 -0
- package/src/components/formular/utils/dev-logger.ts +44 -0
- package/src/components/formular/utils/index.ts +23 -0
- package/src/components/formular/utils/use-field-descriptors.ts +75 -0
- package/src/components/formular/utils/use-formular-manager.ts +37 -0
- package/src/components/hooks/use-drawer-position.ts +91 -0
- package/src/components/interfaces/component-config-internal.interface.ts +10 -0
- package/src/components/interfaces/component-config.interface.ts +57 -0
- package/src/components/interfaces/component-config.ts +151 -0
- package/src/components/interfaces/index.ts +7 -0
- package/src/components/interfaces/prototype/active.ts +13 -0
- package/src/components/interfaces/prototype/border.ts +13 -0
- package/src/components/interfaces/prototype/build.ts +31 -0
- package/src/components/interfaces/prototype/class-name.ts +13 -0
- package/src/components/interfaces/prototype/disabled.ts +13 -0
- package/src/components/interfaces/prototype/focus.ts +13 -0
- package/src/components/interfaces/prototype/full-width.ts +13 -0
- package/src/components/interfaces/prototype/hover.ts +13 -0
- package/src/components/interfaces/prototype/loading.ts +13 -0
- package/src/components/interfaces/prototype/rounded.ts +13 -0
- package/src/components/interfaces/prototype/shadow.ts +13 -0
- package/src/components/interfaces/prototype/size.ts +14 -0
- package/src/components/interfaces/prototype/transition-duration.ts +13 -0
- package/src/components/interfaces/prototype/transition.ts +13 -0
- package/src/components/interfaces/prototype/variant.ts +14 -0
- package/src/components/interfaces/readme.md +1 -0
- package/src/components/molecules/accordion/accordion-item.syn +80 -0
- package/src/components/molecules/accordion/accordion-item.type.ts +28 -0
- package/src/components/molecules/accordion/accordion.syn +92 -0
- package/src/components/molecules/accordion/accordion.type.ts +29 -0
- package/src/components/molecules/accordion/index.ts +8 -0
- package/src/components/molecules/alert/alert-description.syn +23 -0
- package/src/components/molecules/alert/alert-description.type.ts +9 -0
- package/src/components/molecules/alert/alert-icon.syn +19 -0
- package/src/components/molecules/alert/alert-icon.type.ts +9 -0
- package/src/components/molecules/alert/alert-title.syn +19 -0
- package/src/components/molecules/alert/alert-title.type.ts +9 -0
- package/src/components/molecules/alert/alert.syn +76 -0
- package/src/components/molecules/alert/alert.type.ts +17 -0
- package/src/components/molecules/alert/index.ts +12 -0
- package/src/components/molecules/badge/badge.syn +66 -0
- package/src/components/molecules/badge/badge.type.ts +25 -0
- package/src/components/molecules/badge/index.ts +6 -0
- package/src/components/molecules/breadcrumbs/breadcrumb-item.type.ts +23 -0
- package/src/components/molecules/breadcrumbs/breadcrumbs.syn +60 -0
- package/src/components/molecules/breadcrumbs/breadcrumbs.type.ts +18 -0
- package/src/components/molecules/breadcrumbs/index.ts +8 -0
- package/src/components/molecules/button/button.syn +124 -0
- package/src/components/molecules/button/button.type.ts +24 -0
- package/src/components/molecules/button/index.ts +9 -0
- package/src/components/molecules/dropdown/dropdown-item.syn +30 -0
- package/src/components/molecules/dropdown/dropdown-item.type.ts +11 -0
- package/src/components/molecules/dropdown/dropdown.syn +135 -0
- package/src/components/molecules/dropdown/dropdown.type.ts +12 -0
- package/src/components/molecules/dropdown/index.ts +8 -0
- package/src/components/molecules/label/index.ts +6 -0
- package/src/components/molecules/label/label.syn +72 -0
- package/src/components/molecules/label/label.type.ts +28 -0
- package/src/components/molecules/list/index.ts +8 -0
- package/src/components/molecules/list/list-item.syn +33 -0
- package/src/components/molecules/list/list-item.type.ts +10 -0
- package/src/components/molecules/list/list.syn +54 -0
- package/src/components/molecules/list/list.type.ts +17 -0
- package/src/components/molecules/menu/index.ts +10 -0
- package/src/components/molecules/menu/menu-divider.syn +21 -0
- package/src/components/molecules/menu/menu-divider.type.ts +8 -0
- package/src/components/molecules/menu/menu-item.syn +56 -0
- package/src/components/molecules/menu/menu-item.type.ts +12 -0
- package/src/components/molecules/menu/menu.syn +78 -0
- package/src/components/molecules/menu/menu.type.ts +14 -0
- package/src/components/molecules/option/index.ts +6 -0
- package/src/components/molecules/option/option.syn +41 -0
- package/src/components/molecules/option/option.type.ts +23 -0
- package/src/components/molecules/pagination/index.ts +7 -0
- package/src/components/molecules/pagination/pagination.syn +123 -0
- package/src/components/molecules/pagination/pagination.type.ts +34 -0
- package/src/components/molecules/popover/index.ts +6 -0
- package/src/components/molecules/popover/popover.syn +88 -0
- package/src/components/molecules/popover/popover.type.ts +20 -0
- package/src/components/molecules/radio-group/index.ts +7 -0
- package/src/components/molecules/radio-group/radio-group.syn +79 -0
- package/src/components/molecules/radio-group/radio-group.type.ts +29 -0
- package/src/components/molecules/radio-group/radio-option.type.ts +9 -0
- package/src/components/molecules/tabs/index.ts +14 -0
- package/src/components/molecules/tabs/tab-list.syn +70 -0
- package/src/components/molecules/tabs/tab-list.type.ts +9 -0
- package/src/components/molecules/tabs/tab-panel.syn +34 -0
- package/src/components/molecules/tabs/tab-panel.type.ts +11 -0
- package/src/components/molecules/tabs/tab-panels.syn +40 -0
- package/src/components/molecules/tabs/tab-panels.type.ts +9 -0
- package/src/components/molecules/tabs/tab.syn +52 -0
- package/src/components/molecules/tabs/tab.type.ts +13 -0
- package/src/components/molecules/tabs/tabs.syn +74 -0
- package/src/components/molecules/tabs/tabs.type.ts +17 -0
- package/src/components/organisms/card/card.syn +64 -0
- package/src/components/organisms/card/card.type.ts +25 -0
- package/src/components/organisms/card/index.ts +6 -0
- package/src/components/organisms/commands/commands.syn +0 -0
- package/src/components/organisms/commands/commands.type.ts +1 -0
- package/src/components/organisms/date-picker/components/date-picker.body.days.syn +98 -0
- package/src/components/organisms/date-picker/components/date-picker.body.months.syn +77 -0
- package/src/components/organisms/date-picker/components/date-picker.body.years.syn +86 -0
- package/src/components/organisms/date-picker/components/date-picker.cell.syn +104 -0
- package/src/components/organisms/date-picker/components/date-picker.context.ts +36 -0
- package/src/components/organisms/date-picker/components/date-picker.drawer.content.ui.syn +93 -0
- package/src/components/organisms/date-picker/components/date-picker.header.syn +130 -0
- package/src/components/organisms/date-picker/components/date-picker.switch.syn +27 -0
- package/src/components/organisms/date-picker/core/computed/compute-days-grid.ts +46 -0
- package/src/components/organisms/date-picker/core/computed/compute-months-grid.ts +43 -0
- package/src/components/organisms/date-picker/core/computed/compute-range.ts +36 -0
- package/src/components/organisms/date-picker/core/computed/compute-years-grid.ts +56 -0
- package/src/components/organisms/date-picker/core/constructors/create-cell.ts +37 -0
- package/src/components/organisms/date-picker/core/date-picker.types.ts +41 -0
- package/src/components/organisms/date-picker/core/getters/get-current-month-days.ts +35 -0
- package/src/components/organisms/date-picker/core/getters/get-next-date.ts +32 -0
- package/src/components/organisms/date-picker/core/getters/get-next-month-days.ts +23 -0
- package/src/components/organisms/date-picker/core/getters/get-previous-date.ts +32 -0
- package/src/components/organisms/date-picker/core/getters/get-previous-month-days.ts +32 -0
- package/src/components/organisms/date-picker/core/models/date-picker.models.constructors.ts +36 -0
- package/src/components/organisms/date-picker/core/models/date-picker.models.ts +46 -0
- package/src/components/organisms/date-picker/core/system/get-local-system-separator.ts +5 -0
- package/src/components/organisms/date-picker/date-picker.css +426 -0
- package/src/components/organisms/date-picker/date-picker.drawer.content.syn +238 -0
- package/src/components/organisms/date-picker/date-picker.stories.syn +275 -0
- package/src/components/organisms/date-picker/date-picker.syn +298 -0
- package/src/components/organisms/date-picker/examples.syn +197 -0
- package/src/components/organisms/date-picker/hooks/use-object-ref.ts +18 -0
- package/src/components/organisms/date-picker/index.ts +23 -0
- package/src/components/organisms/date-picker/internal-components/button.syn +36 -0
- package/src/components/organisms/date-picker/internal-components/icons.syn +76 -0
- package/src/components/organisms/date-picker/internal-components/portal.syn +62 -0
- package/src/components/organisms/date-picker/toggleable/toggleable.context.hook.ts +14 -0
- package/src/components/organisms/date-picker/toggleable/toggleable.context.ts +6 -0
- package/src/components/organisms/date-picker/toggleable/toggleable.syn +37 -0
- package/src/components/organisms/date-picker/utils/class-utils.ts +25 -0
- package/src/components/organisms/date-picker/utils/date-object.ts +42 -0
- package/src/components/organisms/date-picker/utils/date-utils.ts +112 -0
- package/src/components/organisms/drawer/drawer.syn +112 -0
- package/src/components/organisms/drawer/drawer.type.ts +53 -0
- package/src/components/organisms/drawer/index.ts +6 -0
- package/src/components/organisms/footer/footer.syn +53 -0
- package/src/components/organisms/footer/footer.type.ts +20 -0
- package/src/components/organisms/footer/index.ts +6 -0
- package/src/components/organisms/header/header.syn +52 -0
- package/src/components/organisms/header/header.type.ts +24 -0
- package/src/components/organisms/header/index.ts +6 -0
- package/src/components/organisms/modal/index.ts +12 -0
- package/src/components/organisms/modal/modal-body.syn +19 -0
- package/src/components/organisms/modal/modal-body.type.ts +9 -0
- package/src/components/organisms/modal/modal-footer.syn +25 -0
- package/src/components/organisms/modal/modal-footer.type.ts +9 -0
- package/src/components/organisms/modal/modal-header.syn +25 -0
- package/src/components/organisms/modal/modal-header.type.ts +9 -0
- package/src/components/organisms/modal/modal-parts.syn +21 -0
- package/src/components/organisms/modal/modal.syn +104 -0
- package/src/components/organisms/modal/modal.type.ts +15 -0
- package/src/components/organisms/retractable-panel/retractable-panel.syn +141 -0
- package/src/components/organisms/retractable-panel/retractable-panel.type.ts +52 -0
- package/src/components/organisms/select/index.ts +7 -0
- package/src/components/organisms/select/select-option.type.ts +9 -0
- package/src/components/organisms/select/select.syn +92 -0
- package/src/components/organisms/select/select.type.ts +31 -0
- package/src/components/organisms/stepper/INTEGRATION_GUIDE.md +230 -0
- package/src/components/organisms/stepper/PACKAGE_STATUS.md +180 -0
- package/src/components/organisms/stepper/README.md +293 -0
- package/src/components/organisms/stepper/Step.syn +61 -0
- package/src/components/organisms/stepper/Stepper.syn +605 -0
- package/src/components/organisms/stepper/StepperSummary.syn +36 -0
- package/src/components/organisms/stepper/adapters/atomosFormAdapter.ts +163 -0
- package/src/components/organisms/stepper/adapters/index.ts +7 -0
- package/src/components/organisms/stepper/adapters/rhfAdapter.ts +54 -0
- package/src/components/organisms/stepper/components/StepperDebug.syn +454 -0
- package/src/components/organisms/stepper/components/StepperFooter.syn +144 -0
- package/src/components/organisms/stepper/components/StepperHeader.syn +66 -0
- package/src/components/organisms/stepper/components/StepperTab.syn +118 -0
- package/src/components/organisms/stepper/components/stepperDebug.css +72 -0
- package/src/components/organisms/stepper/components/stepperFooter.css +28 -0
- package/src/components/organisms/stepper/components/stepperHeader.css +49 -0
- package/src/components/organisms/stepper/components/stepperTab.css +97 -0
- package/src/components/organisms/stepper/copy-to-atomos.ps1 +78 -0
- package/src/components/organisms/stepper/core/actions.ts +25 -0
- package/src/components/organisms/stepper/core/formAdapter.ts +66 -0
- package/src/components/organisms/stepper/core/helpers.ts +216 -0
- package/src/components/organisms/stepper/core/models.ts +220 -0
- package/src/components/organisms/stepper/core/reducer/addCustomValidators.ts +14 -0
- package/src/components/organisms/stepper/core/reducer/addError.ts +10 -0
- package/src/components/organisms/stepper/core/reducer/addStep.ts +7 -0
- package/src/components/organisms/stepper/core/reducer/computeSiblingStatus.ts +45 -0
- package/src/components/organisms/stepper/core/reducer/computeValidation.ts +61 -0
- package/src/components/organisms/stepper/core/reducer/goToStep.ts +143 -0
- package/src/components/organisms/stepper/core/reducer/init.ts +7 -0
- package/src/components/organisms/stepper/core/reducer/navigationRequest.ts +16 -0
- package/src/components/organisms/stepper/core/reducer/removeAllErrors.ts +26 -0
- package/src/components/organisms/stepper/core/reducer/removeError.ts +12 -0
- package/src/components/organisms/stepper/core/reducer/reset.ts +44 -0
- package/src/components/organisms/stepper/core/reducer/setData.ts +12 -0
- package/src/components/organisms/stepper/core/reducer/setFieldDefaultValue.ts +39 -0
- package/src/components/organisms/stepper/core/reducer/setFields.ts +41 -0
- package/src/components/organisms/stepper/core/reducer/setStepperDefaultValue.ts +33 -0
- package/src/components/organisms/stepper/core/reducer/setSubmittedTimes.ts +9 -0
- package/src/components/organisms/stepper/core/reducer/setVisible.ts +26 -0
- package/src/components/organisms/stepper/core/reducer/submitRequest.ts +19 -0
- package/src/components/organisms/stepper/core/reducer/updateFormCommon.ts +82 -0
- package/src/components/organisms/stepper/core/state.ts +106 -0
- package/src/components/organisms/stepper/index.ts +34 -0
- package/src/components/organisms/stepper/step.css +66 -0
- package/src/components/organisms/stepper/stepper.css +32 -0
- package/src/components/organisms/stepper/stepper.stories.tsx.disabled +329 -0
- package/src/components/organisms/table/index.ts +14 -0
- package/src/components/organisms/table/table-body.syn +43 -0
- package/src/components/organisms/table/table-body.type.ts +9 -0
- package/src/components/organisms/table/table-cell.syn +35 -0
- package/src/components/organisms/table/table-cell.type.ts +10 -0
- package/src/components/organisms/table/table-header.syn +23 -0
- package/src/components/organisms/table/table-header.type.ts +9 -0
- package/src/components/organisms/table/table-row.syn +35 -0
- package/src/components/organisms/table/table-row.type.ts +9 -0
- package/src/components/organisms/table/table.syn +71 -0
- package/src/components/organisms/table/table.type.ts +17 -0
- package/src/components/organisms/toast/index.ts +10 -0
- package/src/components/organisms/toast/toast-container.syn +108 -0
- package/src/components/organisms/toast/toast-container.type.ts +11 -0
- package/src/components/organisms/toast/toast-options.type.ts +11 -0
- package/src/components/organisms/toast/toast.syn +82 -0
- package/src/components/organisms/toast/toast.type.ts +14 -0
- package/src/components/organisms/toast/use-toast.ts +62 -0
- package/src/components/sidebar-nav.syn +107 -0
- package/src/components/utils/component-config-builder/component-config-builder.ts +49 -0
- package/src/components/utils/component-config-builder/component-config-builder.type.ts +27 -0
- package/src/components/utils/component-config-builder/component-config.type.ts +36 -0
- package/src/components/utils/component-config-builder/index.ts +7 -0
- package/src/components/utils/component-config-builder/prototype/active.ts +10 -0
- package/src/components/utils/component-config-builder/prototype/border.ts +10 -0
- package/src/components/utils/component-config-builder/prototype/build.ts +10 -0
- package/src/components/utils/component-config-builder/prototype/class-name.ts +10 -0
- package/src/components/utils/component-config-builder/prototype/color.ts +11 -0
- package/src/components/utils/component-config-builder/prototype/disabled.ts +10 -0
- package/src/components/utils/component-config-builder/prototype/focus.ts +10 -0
- package/src/components/utils/component-config-builder/prototype/full-width.ts +10 -0
- package/src/components/utils/component-config-builder/prototype/hover.ts +10 -0
- package/src/components/utils/component-config-builder/prototype/loading.ts +10 -0
- package/src/components/utils/component-config-builder/prototype/rounded.ts +11 -0
- package/src/components/utils/component-config-builder/prototype/shadow.ts +11 -0
- package/src/components/utils/component-config-builder/prototype/size.ts +11 -0
- package/src/components/utils/component-config-builder/prototype/transition-duration.ts +11 -0
- package/src/components/utils/component-config-builder/prototype/transition.ts +10 -0
- package/src/components/utils/component-config-builder/prototype/variant.ts +11 -0
- package/src/components/utils/component-styling-builder/component-styling-builder.ts +45 -0
- package/src/components/utils/component-styling-builder/component-styling-builder.type.ts +26 -0
- package/src/components/utils/component-styling-builder/component-styling.type.ts +21 -0
- package/src/components/utils/component-styling-builder/index.ts +7 -0
- package/src/components/utils/component-styling-builder/prototype/active.ts +10 -0
- package/src/components/utils/component-styling-builder/prototype/background.ts +10 -0
- package/src/components/utils/component-styling-builder/prototype/base.ts +10 -0
- package/src/components/utils/component-styling-builder/prototype/border.ts +10 -0
- package/src/components/utils/component-styling-builder/prototype/build.ts +10 -0
- package/src/components/utils/component-styling-builder/prototype/custom.ts +10 -0
- package/src/components/utils/component-styling-builder/prototype/disabled.ts +10 -0
- package/src/components/utils/component-styling-builder/prototype/focus.ts +10 -0
- package/src/components/utils/component-styling-builder/prototype/hover.ts +10 -0
- package/src/components/utils/component-styling-builder/prototype/loading.ts +10 -0
- package/src/components/utils/component-styling-builder/prototype/read-only.ts +10 -0
- package/src/components/utils/component-styling-builder/prototype/rounded.ts +10 -0
- package/src/components/utils/component-styling-builder/prototype/shadow.ts +10 -0
- package/src/components/utils/component-styling-builder/prototype/size.ts +10 -0
- package/src/components/utils/component-styling-builder/prototype/transition.ts +10 -0
- package/src/components/utils/component-styling-builder/prototype/variant.ts +10 -0
- package/src/components/utils/index.ts +6 -0
- package/src/components/utils/readme.md +1 -0
- package/src/css.d.ts +14 -0
- package/src/debug-tokens.syn +11 -0
- package/src/design/sizes/index.ts +6 -0
- package/src/design/utility/class-names.ts +6 -0
- package/src/design/utility/index.ts +6 -0
- package/src/design/utility/rounded-classes.ts +6 -0
- package/src/docs/EXAMPLES.md +319 -0
- package/src/docs/EXAMPLES.ts.md +188 -0
- package/src/docs/IMPLEMENTATION_COMPLETE.md +232 -0
- package/src/docs/IMPLEMENTATION_PATTERN.md +319 -0
- package/src/docs/copilot-implementation-rules.md +328 -0
- package/src/index.ts +23 -0
- package/src/jsx.d.ts +8 -0
- package/src/lab/counter.syn +76 -0
- package/src/lab/transformer/README.md +115 -0
- package/src/lab/transformer/async-lazy-loading/2026-02-11-14-20-async-lazy-loading.syn +242 -0
- package/src/lab/transformer/batch-updates/2026-02-11-14-20-batch-updates.syn +228 -0
- package/src/lab/transformer/catcher-error-handlers/2026-02-11-14-20-catcher-error-handlers.syn +211 -0
- package/src/lab/transformer/complex-jsx-expressions/2026-02-11-14-20-complex-jsx-expressions.syn +49 -0
- package/src/lab/transformer/complex-jsx-expressions/2026-02-11-15-01-complex-jsx-expressions.syn +227 -0
- package/src/lab/transformer/concurrent-rendering/2026-02-11-14-20-concurrent-rendering.syn +291 -0
- package/src/lab/transformer/create-context-providers/2026-02-11-14-20-create-context-providers.syn +240 -0
- package/src/lab/transformer/create-effect-side-effects/2026-02-11-14-20-create-effect-side-effects.syn +339 -0
- package/src/lab/transformer/create-resource/2026-02-11-14-20-create-resource.syn +80 -0
- package/src/lab/transformer/dynamic-components/2026-02-11-14-20-dynamic-components.syn +78 -0
- package/src/lab/transformer/dynamic-components/2026-02-11-15-09-dynamic-components.syn +468 -0
- package/src/lab/transformer/for-iteration/2026-02-11-14-20-for-iteration.syn +62 -0
- package/src/lab/transformer/for-iteration-components/2026-02-11-15-07-for-iteration-components.syn +489 -0
- package/src/lab/transformer/generic-type-arguments/2026-02-11-14-20-generic-type-arguments.syn +53 -0
- package/src/lab/transformer/generic-type-arguments/2026-02-11-15-02-generic-type-arguments.syn +140 -0
- package/src/lab/transformer/memo-optimization/2026-02-11-14-20-memo-optimization.syn +275 -0
- package/src/lab/transformer/on-cleanup-patterns/2026-02-11-14-20-on-cleanup-patterns.syn +375 -0
- package/src/lab/transformer/on-mount-lifecycle/2026-02-11-14-20-on-mount-lifecycle.syn +347 -0
- package/src/lab/transformer/portal-transformation/2026-02-11-14-20-portal-transformation.syn +141 -0
- package/src/lab/transformer/render-effect-timing/2026-02-11-14-20-render-effect-timing.syn +334 -0
- package/src/lab/transformer/resource-dependency-tracking/2026-02-11-14-20-resource-dependency-tracking.syn +153 -0
- package/src/lab/transformer/resource-loading-states/2026-02-11-14-20-resource-loading-states.syn +382 -0
- package/src/lab/transformer/resource-mutations/2026-02-11-14-20-resource-mutations.syn +399 -0
- package/src/lab/transformer/resource-parallel-fetching/2026-02-11-14-20-resource-parallel-fetching.syn +446 -0
- package/src/lab/transformer/resource-pre-resolution/2026-02-11-14-20-resource-pre-resolution.syn +405 -0
- package/src/lab/transformer/resource-refetch-patterns/2026-02-11-14-20-resource-refetch-patterns.syn +120 -0
- package/src/lab/transformer/resource-state-handling/2026-02-11-14-20-resource-state-handling.syn +104 -0
- package/src/lab/transformer/server-side-rendering/2026-02-11-14-20-server-side-rendering.syn +234 -0
- package/src/lab/transformer/show-components/2026-02-11-14-20-show-components.syn +57 -0
- package/src/lab/transformer/show-when-components/2026-02-11-15-03-show-when-components.syn +202 -0
- package/src/lab/transformer/template-literals/2026-02-11-14-20-template-literals.syn +34 -0
- package/src/lab/transformer/template-literals/2026-02-11-15-00-template-literals.syn +146 -0
- package/src/lab/transformer/tryer-error-boundaries/2026-02-11-14-20-tryer-error-boundaries.syn +111 -0
- package/src/lab/transformer/type-inference-system/2026-02-11-14-20-type-inference-system.syn +50 -0
- package/src/lab/transformer/type-inference-system/2026-02-11-15-05-type-inference-system.syn +353 -0
- package/src/lab/transformer/untrack-isolation/2026-02-11-14-20-untrack-isolation.syn +326 -0
- package/src/lab/transformer/waiting-suspense/2026-02-11-14-20-waiting-suspense.syn +78 -0
- package/src/main-simple.syn +23 -0
- package/src/main.syn +101 -0
- package/src/main.ts +57 -0
- package/src/showcase/__tests__/e2e/context-structure.spec.ts +46 -0
- package/src/showcase/__tests__/e2e/context-ui.spec.ts +137 -0
- package/src/showcase/__tests__/e2e/control-flow-ui.spec.ts +149 -0
- package/src/showcase/__tests__/e2e/debug-compiled.spec.ts +13 -0
- package/src/showcase/__tests__/e2e/debug-screenshot.png +0 -0
- package/src/showcase/__tests__/e2e/debug.spec.ts +20 -0
- package/src/showcase/__tests__/e2e/deep-debug.spec.ts +130 -0
- package/src/showcase/__tests__/e2e/error-boundary-ui.spec.ts +113 -0
- package/src/showcase/__tests__/e2e/main-transformed.js +0 -0
- package/src/showcase/__tests__/e2e/portal-ui.spec.ts +135 -0
- package/src/showcase/__tests__/e2e/reactivity-ui.spec.ts +81 -0
- package/src/showcase/__tests__/e2e/resource-debug.spec.ts +37 -0
- package/src/showcase/__tests__/e2e/visual-debug.spec.ts +147 -0
- package/src/showcase/__tests__/integration/context-provider-consumer.test.ts +114 -0
- package/src/showcase/__tests__/integration/context-ui.test.ts +150 -0
- package/src/showcase/__tests__/integration/error-boundary-reactivity.test.ts +164 -0
- package/src/showcase/__tests__/integration/reactivity-control-flow.test.ts +226 -0
- package/src/showcase/__tests__/integration/reactivity-cross-component.test.ts +103 -0
- package/src/showcase/__tests__/integration/showcase-navigation.test.ts +159 -0
- package/src/showcase/__tests__/setup.ts +37 -0
- package/src/showcase/__tests__/unit/context.test.ts +122 -0
- package/src/showcase/__tests__/unit/control-flow.test.ts +167 -0
- package/src/showcase/__tests__/unit/error-boundary.test.ts +116 -0
- package/src/showcase/__tests__/unit/portal.test.ts +122 -0
- package/src/showcase/__tests__/unit/reactivity.test.ts +152 -0
- package/src/showcase/about/about.syn +59 -0
- package/src/showcase/about/components/details-section.syn +29 -0
- package/src/showcase/about/components/feature-list.syn +23 -0
- package/src/showcase/about/components/index.ts +7 -0
- package/src/showcase/about/components/route-info.syn +29 -0
- package/src/showcase/bootstrap/bootstrap-test.syn +152 -0
- package/src/showcase/bootstrap/components/config-service-error-view.syn +41 -0
- package/src/showcase/bootstrap/components/config-service-resolved-view.syn +69 -0
- package/src/showcase/bootstrap/demos/basic-demo.syn +26 -0
- package/src/showcase/bootstrap/demos/di-demo-interactive.syn +94 -0
- package/src/showcase/bootstrap/demos/di-demo.syn +64 -0
- package/src/showcase/bootstrap/demos/lifecycle-demo.syn +74 -0
- package/src/showcase/bootstrap/demos/return-value-demo.syn +95 -0
- package/src/showcase/bootstrap/types/config-service.types.ts +9 -0
- package/src/showcase/common/components/code-block.syn +24 -0
- package/src/showcase/common/components/console-log-viewer.syn +133 -0
- package/src/showcase/common/components/demo-button.syn +42 -0
- package/src/showcase/common/components/demo-section.syn +29 -0
- package/src/showcase/common/components/index.ts +13 -0
- package/src/showcase/common/components/isolated-demo.syn +95 -0
- package/src/showcase/common/components/modal.syn +58 -0
- package/src/showcase/common/components/page-header.syn +29 -0
- package/src/showcase/common/components/status-indicator.syn +34 -0
- package/src/showcase/common/examples/logging-example.syn +67 -0
- package/src/showcase/common/hooks/use-logger.ts +60 -0
- package/src/showcase/context/components/index.ts +12 -0
- package/src/showcase/context/components/multi-context-dashboard.syn +135 -0
- package/src/showcase/context/components/settings-provider.syn +35 -0
- package/src/showcase/context/components/theme-controls.syn +51 -0
- package/src/showcase/context/components/theme-provider.syn +25 -0
- package/src/showcase/context/components/themed-box.syn +20 -0
- package/src/showcase/context/components/user-controls.syn +38 -0
- package/src/showcase/context/components/user-profile.syn +26 -0
- package/src/showcase/context/components/user-provider.syn +34 -0
- package/src/showcase/context/context-test.syn +66 -0
- package/src/showcase/control-flow/components/for-demo.syn +67 -0
- package/src/showcase/control-flow/components/index-demo.syn +41 -0
- package/src/showcase/control-flow/components/index.ts +8 -0
- package/src/showcase/control-flow/components/show-demo.syn +53 -0
- package/src/showcase/control-flow/control-flow-test.syn +104 -0
- package/src/showcase/di/components/circular-dependency-demo.syn +113 -0
- package/src/showcase/di/components/hierarchical-di-demo.syn +81 -0
- package/src/showcase/di/components/index.ts +6 -0
- package/src/showcase/di/components/lifetime-card.syn +30 -0
- package/src/showcase/di/components/registered-services-list.syn +29 -0
- package/src/showcase/di/components/resolution-result.syn +34 -0
- package/src/showcase/di/components/service-button.syn +26 -0
- package/src/showcase/di/components/service-lifetime-demo.syn +135 -0
- package/src/showcase/di/components/service-registration-demo.syn +85 -0
- package/src/showcase/di/components/service-resolution-demo.syn +145 -0
- package/src/showcase/di/di-test.syn +121 -0
- package/src/showcase/di/services/demo-services.ts +128 -0
- package/src/showcase/drag-drop/components/drag-drop-zone-demo.syn +75 -0
- package/src/showcase/drag-drop/components/index.ts +7 -0
- package/src/showcase/drag-drop/components/kanban-board-demo.syn +76 -0
- package/src/showcase/drag-drop/components/sortable-list-demo.syn +71 -0
- package/src/showcase/drag-drop/drag-drop-test.syn +44 -0
- package/src/showcase/error-boundary/components/basic-boundary-demo.syn +54 -0
- package/src/showcase/error-boundary/components/boundary-section.syn +47 -0
- package/src/showcase/error-boundary/components/cleanup-demo.syn +88 -0
- package/src/showcase/error-boundary/components/control-button-group.syn +48 -0
- package/src/showcase/error-boundary/components/error-boundary-control-panel.syn +76 -0
- package/src/showcase/error-boundary/components/error-boundary-status-summary.syn +46 -0
- package/src/showcase/error-boundary/components/error-component.syn +15 -0
- package/src/showcase/error-boundary/components/error-display.syn +27 -0
- package/src/showcase/error-boundary/components/index.ts +14 -0
- package/src/showcase/error-boundary/components/reset-flow-demo.syn +107 -0
- package/src/showcase/error-boundary/components/retry-counter-demo.syn +97 -0
- package/src/showcase/error-boundary/components/safe-component.syn +12 -0
- package/src/showcase/error-boundary/components/visual-boundary-wrapper.syn +78 -0
- package/src/showcase/error-boundary/error-boundary-mega.syn +180 -0
- package/src/showcase/error-boundary/error-boundary-simple.syn +88 -0
- package/src/showcase/error-boundary/error-boundary-test.syn +77 -0
- package/src/showcase/forms/components/async-validation-demo.syn +101 -0
- package/src/showcase/forms/components/basic-form-demo.syn +42 -0
- package/src/showcase/forms/components/field-state-demo.syn +70 -0
- package/src/showcase/forms/components/index.ts +9 -0
- package/src/showcase/forms/components/submission-demo.syn +78 -0
- package/src/showcase/forms/components/validation-demo.syn +59 -0
- package/src/showcase/forms/forms-test.syn +179 -0
- package/src/showcase/forms/pages/cross-validation-page.syn +181 -0
- package/src/showcase/forms/pages/dependent-fields-page.syn +122 -0
- package/src/showcase/forms/pages/dynamic-fields-page.syn +245 -0
- package/src/showcase/forms/pages/edit-form-page.syn +163 -0
- package/src/showcase/forms/pages/index.ts +10 -0
- package/src/showcase/forms/pages/select-controls-page.syn +112 -0
- package/src/showcase/forms/pages/wizard-page.syn +253 -0
- package/src/showcase/home/home.syn +22 -0
- package/src/showcase/http/components/abort-demo.syn +87 -0
- package/src/showcase/http/components/basic-requests-demo.syn +88 -0
- package/src/showcase/http/components/index.ts +8 -0
- package/src/showcase/http/components/interceptors-demo.syn +90 -0
- package/src/showcase/http/components/retry-demo.syn +84 -0
- package/src/showcase/http/http-test.syn +88 -0
- package/src/showcase/index.ts +46 -0
- package/src/showcase/jsx/components/event-handlers-demo.syn +78 -0
- package/src/showcase/jsx/components/index.ts +7 -0
- package/src/showcase/jsx/components/reactive-attributes-demo.syn +69 -0
- package/src/showcase/jsx/components/style-objects-demo.syn +40 -0
- package/src/showcase/jsx/jsx-test.syn +81 -0
- package/src/showcase/pages/__tests__/about.test.ts +120 -0
- package/src/showcase/pages/__tests__/assignment-test.test.ts +68 -0
- package/src/showcase/pages/__tests__/context-test.test.ts +218 -0
- package/src/showcase/pages/__tests__/control-flow-test.test.ts +184 -0
- package/src/showcase/pages/__tests__/error-boundary-test.test.ts +220 -0
- package/src/showcase/pages/__tests__/home.test.ts +54 -0
- package/src/showcase/pages/__tests__/jsx-test.test.ts +182 -0
- package/src/showcase/pages/__tests__/reactivity-test.test.ts +177 -0
- package/src/showcase/pages/__tests__/resource-test.test.ts +215 -0
- package/src/showcase/pages/error-boundary-mega-demo.syn +0 -0
- package/src/showcase/portal/components/basic-portal-demo.syn +41 -0
- package/src/showcase/portal/components/index.ts +7 -0
- package/src/showcase/portal/components/modal-portal-demo.syn +84 -0
- package/src/showcase/portal/components/tooltip-portal-demo.syn +56 -0
- package/src/showcase/portal/portal-test.syn +44 -0
- package/src/showcase/reactivity/components/batch-demo.syn +43 -0
- package/src/showcase/reactivity/components/effect-demo.syn +19 -0
- package/src/showcase/reactivity/components/index.ts +11 -0
- package/src/showcase/reactivity/components/memo-demo.syn +29 -0
- package/src/showcase/reactivity/components/render-effect-demo.syn +78 -0
- package/src/showcase/reactivity/components/signal-demo.syn +45 -0
- package/src/showcase/reactivity/components/untrack-demo.syn +67 -0
- package/src/showcase/reactivity/components/use-sync-demo.syn +96 -0
- package/src/showcase/reactivity/reactivity-test.syn +170 -0
- package/src/showcase/resource/components/cache-demo.syn +141 -0
- package/src/showcase/resource/components/coordination-demo.syn +136 -0
- package/src/showcase/resource/components/deduplication-demo.syn +33 -0
- package/src/showcase/resource/components/error-resource-demo.syn +93 -0
- package/src/showcase/resource/components/image-card.syn +53 -0
- package/src/showcase/resource/components/image-gallery-demo.syn +56 -0
- package/src/showcase/resource/components/index.ts +15 -0
- package/src/showcase/resource/components/mock-api.ts +67 -0
- package/src/showcase/resource/components/refetch-clear-demo.syn +99 -0
- package/src/showcase/resource/components/suspend-control-demo.syn +62 -0
- package/src/showcase/resource/components/suspense-skeleton.syn +24 -0
- package/src/showcase/resource/components/user-card.syn +57 -0
- package/src/showcase/resource/components/waiting-demo.syn +118 -0
- package/src/showcase/resource/resource-test.syn +193 -0
- package/src/showcase/routing/components/guard-demo.syn +75 -0
- package/src/showcase/routing/components/index.ts +9 -0
- package/src/showcase/routing/components/navigation-demo.syn +47 -0
- package/src/showcase/routing/components/nested-outlet-demo.syn +73 -0
- package/src/showcase/routing/components/params-demo.syn +54 -0
- package/src/showcase/routing/components/query-demo.syn +63 -0
- package/src/showcase/routing/routing-test.syn +102 -0
- package/src/showcase/ssr/components/escape-demo.syn +80 -0
- package/src/showcase/ssr/components/hydrate-demo.syn +142 -0
- package/src/showcase/ssr/components/hydration-script-demo.syn +104 -0
- package/src/showcase/ssr/components/index.ts +8 -0
- package/src/showcase/ssr/components/render-to-string-demo.syn +71 -0
- package/src/showcase/ssr/ssr-test.syn +88 -0
- package/src/showcase/svg-canvas/board/components/canvas-badge-list.syn +59 -0
- package/src/showcase/svg-canvas/board/components/canvas-draw-preview.syn +75 -0
- package/src/showcase/svg-canvas/board/components/canvas-toolbar.syn +59 -0
- package/src/showcase/svg-canvas/board/components/line-canvas.syn +673 -0
- package/src/showcase/svg-canvas/board/components/side-toolbox.syn +51 -0
- package/src/showcase/svg-canvas/board/components/svg/canvas-dot-grid.syn +18 -0
- package/src/showcase/svg-canvas/board/model/i-board.ts +20 -0
- package/src/showcase/svg-canvas/board/store/canvas-board.slice.ts +51 -0
- package/src/showcase/svg-canvas/index.ts +2 -0
- package/src/showcase/svg-canvas/line/components/canvas-line-item.syn +85 -0
- package/src/showcase/svg-canvas/line/components/svg/svg-endpoint-handle.syn +29 -0
- package/src/showcase/svg-canvas/line/components/svg/svg-line-label.syn +33 -0
- package/src/showcase/svg-canvas/line/entity/canvas-line.ts +42 -0
- package/src/showcase/svg-canvas/line/entity/create-canvas-line.ts +24 -0
- package/src/showcase/svg-canvas/line/model/i-canvas-line.ts +42 -0
- package/src/showcase/svg-canvas/line/store/canvas-line.slice.ts +38 -0
- package/src/showcase/svg-canvas/modal/components/canvas-settings-modal.syn +118 -0
- package/src/showcase/svg-canvas/modal/model/i-canvas-modal.ts +10 -0
- package/src/showcase/svg-canvas/modal/store/canvas-modal.slice.ts +36 -0
- package/src/showcase/svg-canvas/shape/components/canvas-anchor-group.syn +33 -0
- package/src/showcase/svg-canvas/shape/components/canvas-diamond-body.syn +48 -0
- package/src/showcase/svg-canvas/shape/components/canvas-entity-card.syn +89 -0
- package/src/showcase/svg-canvas/shape/components/canvas-rect-body.syn +37 -0
- package/src/showcase/svg-canvas/shape/components/canvas-shape-item.syn +110 -0
- package/src/showcase/svg-canvas/shape/components/card-header.syn +45 -0
- package/src/showcase/svg-canvas/shape/components/property-row.syn +29 -0
- package/src/showcase/svg-canvas/shape/components/svg/svg-anchor-circle.syn +44 -0
- package/src/showcase/svg-canvas/shape/entity/canvas-diamond.ts +102 -0
- package/src/showcase/svg-canvas/shape/entity/canvas-entity.ts +19 -0
- package/src/showcase/svg-canvas/shape/entity/canvas-rectangle.ts +53 -0
- package/src/showcase/svg-canvas/shape/entity/canvas-square.ts +72 -0
- package/src/showcase/svg-canvas/shape/entity/create-shape.ts +69 -0
- package/src/showcase/svg-canvas/shape/model/i-shape.ts +37 -0
- package/src/showcase/svg-canvas/shape/store/canvas-shape.slice.ts +38 -0
- package/src/showcase/svg-canvas/shared/atoms/canvas-badge.syn +34 -0
- package/src/showcase/svg-canvas/shared/atoms/canvas-icon-btn.syn +32 -0
- package/src/showcase/svg-canvas/shared/atoms/canvas-text-input.syn +27 -0
- package/src/showcase/svg-canvas/shared/helpers/canvas-dom-ops.ts +187 -0
- package/src/showcase/svg-canvas/shared/helpers/canvas-helpers.ts +112 -0
- package/src/showcase/svg-canvas/shared/helpers/route-orthogonal.ts +176 -0
- package/src/showcase/svg-canvas/shared/model/i-drag.ts +84 -0
- package/src/showcase/svg-canvas/shared/model/i-entity.ts +71 -0
- package/src/showcase/svg-canvas/store/canvas-store.ts +60 -0
- package/src/showcase/svg-canvas/svg-canvas-page.syn +28 -0
- package/src/showcase/tests/assignment-test.syn +37 -0
- package/src/showcase/tests/minimal-export-test.syn +7 -0
- package/src/showcase/tests/object-literal-test.syn +26 -0
- package/src/showcase/tests/simple-codegen-test.syn +12 -0
- package/src/showcase/tests/simple-test.syn +51 -0
- package/src/showcase/tests/template-literal-demo.syn +138 -0
- package/src/showcase-styles.css +96 -0
- package/src/styles/design-system.css +275 -0
- package/src/styles/motion.css +121 -0
- package/src/styles/showcase-base.css +522 -0
- package/src/styles/showcase.css +653 -0
- package/src/styles/state-layers.css +55 -0
- package/src/styles/touch-targets.css +41 -0
- package/src/styles/transitions.css +617 -0
- package/src/styles/utilities.css +115 -0
- package/src/styles.css +23 -0
- package/src/test-keywords.syn +15 -0
- package/src/test-loop.syn +29 -0
- package/src/test-minimal.syn +9 -0
- package/src/test-object-literal.syn +19 -0
- package/src/test-simple.syn +12 -0
- package/src/types/psr-modules.d.ts +6 -0
- package/src/types.ts +37 -0
- package/tailwind.config.js +354 -0
- package/test-results/.last-run.json +4 -0
- package/test-signal-debug.syn +9 -0
- package/test-transformation.ts +35 -0
- package/tsconfig.build.json +31 -0
- package/tsconfig.json +44 -0
- package/tsconfig.stories.json +10 -0
- package/vite.config.ts +47 -0
- package/vitest.config.ts +41 -0
package/latest-test.txt
ADDED
|
@@ -0,0 +1,2900 @@
|
|
|
1
|
+
|
|
2
|
+
> @pulsar-framework/ui@0.7.0-alpha test E:\Sources\visual-schema-builder\packages\pulsar-ui.dev
|
|
3
|
+
> vitest run
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
[1m[46m RUN [49m[22m [36mv4.0.18 [39m[90mE:/Sources/visual-schema-builder/packages/pulsar-ui.dev[39m
|
|
7
|
+
|
|
8
|
+
[pulsar] resolveId: Resolving .psr "../resource-test.psr"
|
|
9
|
+
[pulsar] From: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/__tests__/resource-test.test.ts
|
|
10
|
+
[pulsar] resolveId: Resolving .psr "../home.psr"
|
|
11
|
+
[pulsar] From: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/__tests__/home.test.ts
|
|
12
|
+
[pulsar] Γ£ô Resolved to: E:\Sources\visual-schema-builder\packages\pulsar-ui.dev\src\showcase\pages\resource-test.psr
|
|
13
|
+
[pulsar] Γ£ô Resolved to: E:\Sources\visual-schema-builder\packages\pulsar-ui.dev\src\showcase\pages\home.psr
|
|
14
|
+
[pulsar] load() called for: home.psr
|
|
15
|
+
[pulsar] Full ID: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/home.psr
|
|
16
|
+
[pulsar] Clean ID: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/home.psr
|
|
17
|
+
[pulsar] Query: none
|
|
18
|
+
[pulsar] load() called for: resource-test.psr
|
|
19
|
+
[pulsar] Full ID: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/resource-test.psr
|
|
20
|
+
[pulsar] Clean ID: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/resource-test.psr
|
|
21
|
+
[pulsar] Query: none
|
|
22
|
+
[TRACER INIT] Environment vars:
|
|
23
|
+
PULSAR_TRACE: undefined
|
|
24
|
+
PULSAR_TRACE_HTTP: undefined
|
|
25
|
+
PULSAR_TRACE_CHANNELS: undefined
|
|
26
|
+
[TRACER INIT] Tracing initialized
|
|
27
|
+
[TRACER] Transformer instrumentation complete
|
|
28
|
+
[TRACER] Code generator instrumentation complete
|
|
29
|
+
[TRACER] Semantic analyzer instrumentation complete
|
|
30
|
+
[pulsar] resolveId: Resolving .psr "../../lab/counter.psr"
|
|
31
|
+
[pulsar] From: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/home.psr
|
|
32
|
+
[pulsar] Γ£ô Resolved to: E:\Sources\visual-schema-builder\packages\pulsar-ui.dev\src\lab\counter.psr
|
|
33
|
+
[pulsar] resolveId: Resolving .psr "../error-boundary-test.psr"
|
|
34
|
+
[pulsar] From: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/__tests__/error-boundary-test.test.ts
|
|
35
|
+
[pulsar] resolveId: Resolving .psr "../jsx-test.psr"
|
|
36
|
+
[pulsar] From: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/__tests__/jsx-test.test.ts
|
|
37
|
+
[pulsar] Γ£ô Resolved to: E:\Sources\visual-schema-builder\packages\pulsar-ui.dev\src\showcase\pages\error-boundary-test.psr
|
|
38
|
+
[pulsar] Γ£ô Resolved to: E:\Sources\visual-schema-builder\packages\pulsar-ui.dev\src\showcase\pages\jsx-test.psr
|
|
39
|
+
[pulsar] resolveId: Resolving .psr "../assignment-test.psr"
|
|
40
|
+
[pulsar] From: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/__tests__/assignment-test.test.ts
|
|
41
|
+
[pulsar] resolveId: Resolving .psr "../control-flow-test.psr"
|
|
42
|
+
[pulsar] From: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/__tests__/control-flow-test.test.ts
|
|
43
|
+
[pulsar] resolveId: Resolving .psr "../../pages/reactivity-test.psr"
|
|
44
|
+
[pulsar] From: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/__tests__/integration/reactivity-cross-component.test.ts
|
|
45
|
+
[pulsar] resolveId: Resolving .psr "../../pages/home.psr"
|
|
46
|
+
[pulsar] From: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/__tests__/integration/showcase-navigation.test.ts
|
|
47
|
+
[pulsar] resolveId: Resolving .psr "../about.psr"
|
|
48
|
+
[pulsar] From: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/__tests__/about.test.ts
|
|
49
|
+
[pulsar] resolveId: Resolving .psr "../../pages/context-test.psr"
|
|
50
|
+
[pulsar] From: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/__tests__/integration/context-provider-consumer.test.ts
|
|
51
|
+
[pulsar] resolveId: Resolving .psr "../context-test.psr"
|
|
52
|
+
[pulsar] From: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/__tests__/context-test.test.ts
|
|
53
|
+
[pulsar] resolveId: Resolving .psr "../reactivity-test.psr"
|
|
54
|
+
[pulsar] From: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/__tests__/reactivity-test.test.ts
|
|
55
|
+
[pulsar] Γ£ô Resolved to: E:\Sources\visual-schema-builder\packages\pulsar-ui.dev\src\showcase\pages\assignment-test.psr
|
|
56
|
+
[pulsar] Γ£ô Resolved to: E:\Sources\visual-schema-builder\packages\pulsar-ui.dev\src\showcase\pages\reactivity-test.psr
|
|
57
|
+
[pulsar] Γ£ô Resolved to: E:\Sources\visual-schema-builder\packages\pulsar-ui.dev\src\showcase\pages\control-flow-test.psr
|
|
58
|
+
[pulsar] Γ£ô Resolved to: E:\Sources\visual-schema-builder\packages\pulsar-ui.dev\src\showcase\pages\home.psr
|
|
59
|
+
[pulsar] Γ£ô Resolved to: E:\Sources\visual-schema-builder\packages\pulsar-ui.dev\src\showcase\pages\about.psr
|
|
60
|
+
[pulsar] Γ£ô Resolved to: E:\Sources\visual-schema-builder\packages\pulsar-ui.dev\src\showcase\pages\context-test.psr
|
|
61
|
+
[pulsar] Γ£ô Resolved to: E:\Sources\visual-schema-builder\packages\pulsar-ui.dev\src\showcase\pages\context-test.psr
|
|
62
|
+
[pulsar] Γ£ô Resolved to: E:\Sources\visual-schema-builder\packages\pulsar-ui.dev\src\showcase\pages\reactivity-test.psr
|
|
63
|
+
[pulsar] load() called for: jsx-test.psr
|
|
64
|
+
[pulsar] Full ID: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/jsx-test.psr
|
|
65
|
+
[pulsar] Clean ID: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/jsx-test.psr
|
|
66
|
+
[pulsar] Query: none
|
|
67
|
+
[pulsar] load() called for: error-boundary-test.psr
|
|
68
|
+
[pulsar] Full ID: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/error-boundary-test.psr
|
|
69
|
+
[pulsar] Clean ID: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/error-boundary-test.psr
|
|
70
|
+
[pulsar] Query: none
|
|
71
|
+
[pulsar] load() called for: assignment-test.psr
|
|
72
|
+
[pulsar] Full ID: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/assignment-test.psr
|
|
73
|
+
[pulsar] Clean ID: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/assignment-test.psr
|
|
74
|
+
[pulsar] Query: none
|
|
75
|
+
[pulsar] load() called for: reactivity-test.psr
|
|
76
|
+
[pulsar] Full ID: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/reactivity-test.psr
|
|
77
|
+
[pulsar] Clean ID: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/reactivity-test.psr
|
|
78
|
+
[pulsar] Query: none
|
|
79
|
+
[pulsar] load() called for: control-flow-test.psr
|
|
80
|
+
[pulsar] Full ID: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/control-flow-test.psr
|
|
81
|
+
[pulsar] Clean ID: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/control-flow-test.psr
|
|
82
|
+
[pulsar] Query: none
|
|
83
|
+
[pulsar] load() called for: about.psr
|
|
84
|
+
[pulsar] Full ID: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/about.psr
|
|
85
|
+
[pulsar] Clean ID: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/about.psr
|
|
86
|
+
[pulsar] Query: none
|
|
87
|
+
[pulsar] load() called for: context-test.psr
|
|
88
|
+
[pulsar] Full ID: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/context-test.psr
|
|
89
|
+
[pulsar] Clean ID: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/showcase/pages/context-test.psr
|
|
90
|
+
[pulsar] Query: none
|
|
91
|
+
[pulsar] load() called for: counter.psr
|
|
92
|
+
[pulsar] Full ID: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/lab/counter.psr
|
|
93
|
+
[pulsar] Clean ID: E:/Sources/visual-schema-builder/packages/pulsar-ui.dev/src/lab/counter.psr
|
|
94
|
+
[pulsar] Query: none
|
|
95
|
+
[90mstdout[2m | src/showcase/pages/__tests__/assignment-test.test.ts[2m > [22m[2mAssignmentTest[2m > [22m[2mRendering[2m > [22m[2mshould render without errors
|
|
96
|
+
[22m[39m[REGISTRY.execute] START: component:AssignmentTest parentId: [1mnull[22m
|
|
97
|
+
[REGISTRY.execute] RESULT: component:AssignmentTest result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
98
|
+
|
|
99
|
+
[31mΓ¥»[39m src/showcase/__tests__/integration/showcase-navigation.test.ts [2m([22m[2m9 tests[22m[2m | [22m[31m9 failed[39m[2m)[22m[32m 10[2mms[22m[39m
|
|
100
|
+
[31m [31m×[31m should render all navigation buttons[39m[32m 4[2mms[22m[39m
|
|
101
|
+
[31m [31m×[31m should have navigation buttons with proper styling[39m[32m 1[2mms[22m[39m
|
|
102
|
+
[31m [31m×[31m should display home page by default[39m[32m 1[2mms[22m[39m
|
|
103
|
+
[31m [31m×[31m should navigate to reactivity page[39m[32m 0[2mms[22m[39m
|
|
104
|
+
[31m [31m×[31m should navigate to about page[39m[32m 0[2mms[22m[39m
|
|
105
|
+
[31m [31m×[31m should update currentPath signal on navigation[39m[32m 0[2mms[22m[39m
|
|
106
|
+
[31m [31m×[31m should load control flow page content[39m[32m 0[2mms[22m[39m
|
|
107
|
+
[31m [31m×[31m should load context page content[39m[32m 0[2mms[22m[39m
|
|
108
|
+
[31m [31m×[31m should navigate back from about to home[39m[32m 1[2mms[22m[39m
|
|
109
|
+
[90mstdout[2m | src/showcase/pages/__tests__/assignment-test.test.ts[2m > [22m[2mAssignmentTest[2m > [22m[2mRendering[2m > [22m[2mshould display initial count
|
|
110
|
+
[22m[39m[REGISTRY.execute] START: component:AssignmentTest parentId: [1mnull[22m
|
|
111
|
+
[REGISTRY.execute] RESULT: component:AssignmentTest result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
112
|
+
|
|
113
|
+
[90mstdout[2m | src/showcase/pages/__tests__/assignment-test.test.ts[2m > [22m[2mAssignmentTest[2m > [22m[2mRendering[2m > [22m[2mshould display success message
|
|
114
|
+
[22m[39m[REGISTRY.execute] START: component:AssignmentTest parentId: [1mnull[22m
|
|
115
|
+
[REGISTRY.execute] RESULT: component:AssignmentTest result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
116
|
+
|
|
117
|
+
[90mstdout[2m | src/showcase/pages/__tests__/assignment-test.test.ts[2m > [22m[2mAssignmentTest[2m > [22m[2mAssignment Operations[2m > [22m[2mshould increment count when button clicked
|
|
118
|
+
[22m[39m[REGISTRY.execute] START: component:AssignmentTest parentId: [1mnull[22m
|
|
119
|
+
[REGISTRY.execute] RESULT: component:AssignmentTest result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
120
|
+
|
|
121
|
+
[90mstdout[2m | src/showcase/pages/__tests__/assignment-test.test.ts[2m > [22m[2mAssignmentTest[2m > [22m[2mAssignment Operations[2m > [22m[2mshould execute assignment in testAssignments function
|
|
122
|
+
[22m[39m[REGISTRY.execute] START: component:AssignmentTest parentId: [1mnull[22m
|
|
123
|
+
[REGISTRY.execute] RESULT: component:AssignmentTest result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
124
|
+
|
|
125
|
+
[32mΓ£ô[39m src/showcase/pages/__tests__/assignment-test.test.ts [2m([22m[2m5 tests[22m[2m)[22m[32m 31[2mms[22m[39m
|
|
126
|
+
[90mstdout[2m | src/showcase/pages/__tests__/resource-test.test.ts[2m > [22m[2mResourceTestPage[2m > [22m[2mUser Resource[2m > [22m[2mshould show loading state initially
|
|
127
|
+
[22m[39m[REGISTRY.execute] START: component:ResourceTestPage parentId: [1mnull[22m
|
|
128
|
+
[REGISTRY.execute] RESULT: component:ResourceTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
129
|
+
|
|
130
|
+
[90mstdout[2m | src/showcase/pages/__tests__/context-test.test.ts[2m > [22m[2mContextTestPage[2m > [22m[2mTheme Context[2m > [22m[2mshould render with default dark theme
|
|
131
|
+
[22m[39m[REGISTRY.execute] START: component:ContextTestPage parentId: [1mnull[22m
|
|
132
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
133
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
134
|
+
[useContext] Signal value: {
|
|
135
|
+
theme: [36m[Function: get][39m,
|
|
136
|
+
setTheme: [36m[Function: set][39m,
|
|
137
|
+
primaryColor: [36m[Function: get][39m,
|
|
138
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
139
|
+
}
|
|
140
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
141
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
142
|
+
[useContext] Signal value: {
|
|
143
|
+
user: [36m[Function: get][39m,
|
|
144
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
145
|
+
login: [36m[Function: login][39m,
|
|
146
|
+
logout: [36m[Function: logout][39m
|
|
147
|
+
}
|
|
148
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
149
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
150
|
+
[useContext] Signal value: {
|
|
151
|
+
fontSize: [36m[Function: get][39m,
|
|
152
|
+
setFontSize: [36m[Function: set][39m,
|
|
153
|
+
notifications: [36m[Function: get][39m,
|
|
154
|
+
setNotifications: [36m[Function: set][39m,
|
|
155
|
+
language: [36m[Function: get][39m,
|
|
156
|
+
setLanguage: [36m[Function: set][39m,
|
|
157
|
+
animations: [36m[Function: get][39m,
|
|
158
|
+
setAnimations: [36m[Function: set][39m
|
|
159
|
+
}
|
|
160
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
161
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
162
|
+
[useContext] Signal value: {
|
|
163
|
+
theme: [36m[Function: get][39m,
|
|
164
|
+
setTheme: [36m[Function: set][39m,
|
|
165
|
+
primaryColor: [36m[Function: get][39m,
|
|
166
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
167
|
+
}
|
|
168
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
169
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
170
|
+
[useContext] Signal value: {
|
|
171
|
+
theme: [36m[Function: get][39m,
|
|
172
|
+
setTheme: [36m[Function: set][39m,
|
|
173
|
+
primaryColor: [36m[Function: get][39m,
|
|
174
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
175
|
+
}
|
|
176
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
177
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
178
|
+
[useContext] Signal value: {
|
|
179
|
+
theme: [36m[Function: get][39m,
|
|
180
|
+
setTheme: [36m[Function: set][39m,
|
|
181
|
+
primaryColor: [36m[Function: get][39m,
|
|
182
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
183
|
+
}
|
|
184
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
185
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
186
|
+
[useContext] Signal value: {
|
|
187
|
+
user: [36m[Function: get][39m,
|
|
188
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
189
|
+
login: [36m[Function: login][39m,
|
|
190
|
+
logout: [36m[Function: logout][39m
|
|
191
|
+
}
|
|
192
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
193
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
194
|
+
[useContext] Signal value: {
|
|
195
|
+
user: [36m[Function: get][39m,
|
|
196
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
197
|
+
login: [36m[Function: login][39m,
|
|
198
|
+
logout: [36m[Function: logout][39m
|
|
199
|
+
}
|
|
200
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
201
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
202
|
+
[useContext] Signal value: {
|
|
203
|
+
fontSize: [36m[Function: get][39m,
|
|
204
|
+
setFontSize: [36m[Function: set][39m,
|
|
205
|
+
notifications: [36m[Function: get][39m,
|
|
206
|
+
setNotifications: [36m[Function: set][39m,
|
|
207
|
+
language: [36m[Function: get][39m,
|
|
208
|
+
setLanguage: [36m[Function: set][39m,
|
|
209
|
+
animations: [36m[Function: get][39m,
|
|
210
|
+
setAnimations: [36m[Function: set][39m
|
|
211
|
+
}
|
|
212
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
213
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
214
|
+
[useContext] Signal value: {
|
|
215
|
+
theme: [36m[Function: get][39m,
|
|
216
|
+
setTheme: [36m[Function: set][39m,
|
|
217
|
+
primaryColor: [36m[Function: get][39m,
|
|
218
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
219
|
+
}
|
|
220
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
221
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
222
|
+
[useContext] Signal value: {
|
|
223
|
+
user: [36m[Function: get][39m,
|
|
224
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
225
|
+
login: [36m[Function: login][39m,
|
|
226
|
+
logout: [36m[Function: logout][39m
|
|
227
|
+
}
|
|
228
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
229
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
230
|
+
[useContext] Signal value: {
|
|
231
|
+
fontSize: [36m[Function: get][39m,
|
|
232
|
+
setFontSize: [36m[Function: set][39m,
|
|
233
|
+
notifications: [36m[Function: get][39m,
|
|
234
|
+
setNotifications: [36m[Function: set][39m,
|
|
235
|
+
language: [36m[Function: get][39m,
|
|
236
|
+
setLanguage: [36m[Function: set][39m,
|
|
237
|
+
animations: [36m[Function: get][39m,
|
|
238
|
+
setAnimations: [36m[Function: set][39m
|
|
239
|
+
}
|
|
240
|
+
[REGISTRY.execute] RESULT: component:ContextTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
241
|
+
|
|
242
|
+
[90mstdout[2m | src/showcase/pages/__tests__/about.test.ts[2m > [22m[2mAboutPage[2m > [22m[2mRendering[2m > [22m[2mshould render about heading
|
|
243
|
+
[22m[39m[REGISTRY.execute] START: component:AboutPage parentId: [1mnull[22m
|
|
244
|
+
[REGISTRY.execute] RESULT: component:AboutPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
245
|
+
|
|
246
|
+
[90mstdout[2m | src/showcase/__tests__/integration/reactivity-cross-component.test.ts[2m > [22m[2mReactivity Cross-Component Integration[2m > [22m[2mSignal-Memo Integration[2m > [22m[2mshould update memo when dependent signals change
|
|
247
|
+
[22m[39m[REGISTRY.execute] START: component:ReactivityTestPage parentId: [1mnull[22m
|
|
248
|
+
[Effect] Full name changed to: John Doe
|
|
249
|
+
[REGISTRY.execute] RESULT: component:ReactivityTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
250
|
+
[Effect] Full name changed to: John Doe
|
|
251
|
+
|
|
252
|
+
[90mstdout[2m | src/showcase/pages/__tests__/home.test.ts[2m > [22m[2mHomePage[2m > [22m[2mRendering[2m > [22m[2mshould render welcome heading
|
|
253
|
+
[22m[39m[REGISTRY.execute] START: component:HomePage parentId: [1mnull[22m
|
|
254
|
+
[REGISTRY.execute] START: component:Counter parentId: [1mnull[22m
|
|
255
|
+
[Counter] Initializing with id: home-counter
|
|
256
|
+
[REGISTRY.execute] RESULT: component:Counter result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
257
|
+
[REGISTRY.execute] RESULT: component:HomePage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
258
|
+
|
|
259
|
+
[90mstdout[2m | src/showcase/pages/__tests__/error-boundary-test.test.ts[2m > [22m[2mErrorBoundaryTestPage[2m > [22m[2mBasic Error Boundary[2m > [22m[2mshould render safe component initially
|
|
260
|
+
[22m[39m[REGISTRY.execute] START: component:ErrorBoundaryTestPage parentId: [1mnull[22m
|
|
261
|
+
[REGISTRY.execute] RESULT: component:ErrorBoundaryTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
262
|
+
|
|
263
|
+
[90mstdout[2m | src/showcase/pages/__tests__/home.test.ts[2m > [22m[2mHomePage[2m > [22m[2mRendering[2m > [22m[2mshould render description text
|
|
264
|
+
[22m[39m[REGISTRY.execute] START: component:HomePage parentId: [1mnull[22m
|
|
265
|
+
[REGISTRY.execute] START: component:Counter parentId: [1mnull[22m
|
|
266
|
+
[Counter] Initializing with id: home-counter
|
|
267
|
+
[REGISTRY.execute] RESULT: component:Counter result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
268
|
+
[REGISTRY.execute] RESULT: component:HomePage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
269
|
+
|
|
270
|
+
[90mstdout[2m | src/showcase/pages/__tests__/about.test.ts[2m > [22m[2mAboutPage[2m > [22m[2mRendering[2m > [22m[2mshould render key features list
|
|
271
|
+
[22m[39m[REGISTRY.execute] START: component:AboutPage parentId: [1mnull[22m
|
|
272
|
+
[REGISTRY.execute] RESULT: component:AboutPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
273
|
+
|
|
274
|
+
[90mstdout[2m | src/showcase/pages/__tests__/jsx-test.test.ts[2m > [22m[2mJsxTestPage[2m > [22m[2mReactive Attributes[2m > [22m[2mshould render initial background color
|
|
275
|
+
[22m[39m[REGISTRY.execute] START: component:JsxTestPage parentId: [1mnull[22m
|
|
276
|
+
[REGISTRY.execute] RESULT: component:JsxTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
277
|
+
|
|
278
|
+
[90mstdout[2m | src/showcase/pages/__tests__/resource-test.test.ts[2m > [22m[2mResourceTestPage[2m > [22m[2mUser Resource[2m > [22m[2mshould display user data after loading
|
|
279
|
+
[22m[39m[REGISTRY.execute] START: component:ResourceTestPage parentId: [1mnull[22m
|
|
280
|
+
[REGISTRY.execute] RESULT: component:ResourceTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
281
|
+
|
|
282
|
+
[90mstdout[2m | src/showcase/__tests__/integration/reactivity-cross-component.test.ts[2m > [22m[2mReactivity Cross-Component Integration[2m > [22m[2mSignal-Memo Integration[2m > [22m[2mshould update multiple dependent memos
|
|
283
|
+
[22m[39m[REGISTRY.execute] START: component:ReactivityTestPage parentId: [1mnull[22m
|
|
284
|
+
[Effect] Full name changed to: John Doe
|
|
285
|
+
[REGISTRY.execute] RESULT: component:ReactivityTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
286
|
+
|
|
287
|
+
[90mstdout[2m | src/showcase/pages/__tests__/home.test.ts[2m > [22m[2mHomePage[2m > [22m[2mRendering[2m > [22m[2mshould render Counter component
|
|
288
|
+
[22m[39m[REGISTRY.execute] START: component:HomePage parentId: [1mnull[22m
|
|
289
|
+
[REGISTRY.execute] START: component:Counter parentId: [1mnull[22m
|
|
290
|
+
[Counter] Initializing with id: home-counter
|
|
291
|
+
[REGISTRY.execute] RESULT: component:Counter result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
292
|
+
[REGISTRY.execute] RESULT: component:HomePage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
293
|
+
|
|
294
|
+
[90mstdout[2m | src/showcase/pages/__tests__/about.test.ts[2m > [22m[2mAboutPage[2m > [22m[2mRendering[2m > [22m[2mshould render toggle details button
|
|
295
|
+
[22m[39m[REGISTRY.execute] START: component:AboutPage parentId: [1mnull[22m
|
|
296
|
+
[REGISTRY.execute] RESULT: component:AboutPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
297
|
+
|
|
298
|
+
[90mstdout[2m | src/showcase/__tests__/integration/context-provider-consumer.test.ts[2m > [22m[2mContext Provider-Consumer Integration[2m > [22m[2mMulti-Context Propagation[2m > [22m[2mshould provide all contexts to nested components
|
|
299
|
+
[22m[39m[REGISTRY.execute] START: component:ContextTestPage parentId: [1mnull[22m
|
|
300
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
301
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
302
|
+
[useContext] Signal value: {
|
|
303
|
+
theme: [36m[Function: get][39m,
|
|
304
|
+
setTheme: [36m[Function: set][39m,
|
|
305
|
+
primaryColor: [36m[Function: get][39m,
|
|
306
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
307
|
+
}
|
|
308
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
309
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
310
|
+
[useContext] Signal value: {
|
|
311
|
+
user: [36m[Function: get][39m,
|
|
312
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
313
|
+
login: [36m[Function: login][39m,
|
|
314
|
+
logout: [36m[Function: logout][39m
|
|
315
|
+
}
|
|
316
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
317
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
318
|
+
[useContext] Signal value: {
|
|
319
|
+
fontSize: [36m[Function: get][39m,
|
|
320
|
+
setFontSize: [36m[Function: set][39m,
|
|
321
|
+
notifications: [36m[Function: get][39m,
|
|
322
|
+
setNotifications: [36m[Function: set][39m,
|
|
323
|
+
language: [36m[Function: get][39m,
|
|
324
|
+
setLanguage: [36m[Function: set][39m,
|
|
325
|
+
animations: [36m[Function: get][39m,
|
|
326
|
+
setAnimations: [36m[Function: set][39m
|
|
327
|
+
}
|
|
328
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
329
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
330
|
+
[useContext] Signal value: {
|
|
331
|
+
theme: [36m[Function: get][39m,
|
|
332
|
+
setTheme: [36m[Function: set][39m,
|
|
333
|
+
primaryColor: [36m[Function: get][39m,
|
|
334
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
335
|
+
}
|
|
336
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
337
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
338
|
+
[useContext] Signal value: {
|
|
339
|
+
theme: [36m[Function: get][39m,
|
|
340
|
+
setTheme: [36m[Function: set][39m,
|
|
341
|
+
primaryColor: [36m[Function: get][39m,
|
|
342
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
343
|
+
}
|
|
344
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
345
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
346
|
+
[useContext] Signal value: {
|
|
347
|
+
theme: [36m[Function: get][39m,
|
|
348
|
+
setTheme: [36m[Function: set][39m,
|
|
349
|
+
primaryColor: [36m[Function: get][39m,
|
|
350
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
351
|
+
}
|
|
352
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
353
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
354
|
+
[useContext] Signal value: {
|
|
355
|
+
user: [36m[Function: get][39m,
|
|
356
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
357
|
+
login: [36m[Function: login][39m,
|
|
358
|
+
logout: [36m[Function: logout][39m
|
|
359
|
+
}
|
|
360
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
361
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
362
|
+
[useContext] Signal value: {
|
|
363
|
+
user: [36m[Function: get][39m,
|
|
364
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
365
|
+
login: [36m[Function: login][39m,
|
|
366
|
+
logout: [36m[Function: logout][39m
|
|
367
|
+
}
|
|
368
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
369
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
370
|
+
[useContext] Signal value: {
|
|
371
|
+
fontSize: [36m[Function: get][39m,
|
|
372
|
+
setFontSize: [36m[Function: set][39m,
|
|
373
|
+
notifications: [36m[Function: get][39m,
|
|
374
|
+
setNotifications: [36m[Function: set][39m,
|
|
375
|
+
language: [36m[Function: get][39m,
|
|
376
|
+
setLanguage: [36m[Function: set][39m,
|
|
377
|
+
animations: [36m[Function: get][39m,
|
|
378
|
+
setAnimations: [36m[Function: set][39m
|
|
379
|
+
}
|
|
380
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
381
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
382
|
+
[useContext] Signal value: {
|
|
383
|
+
theme: [36m[Function: get][39m,
|
|
384
|
+
setTheme: [36m[Function: set][39m,
|
|
385
|
+
primaryColor: [36m[Function: get][39m,
|
|
386
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
387
|
+
}
|
|
388
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
389
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
390
|
+
[useContext] Signal value: {
|
|
391
|
+
user: [36m[Function: get][39m,
|
|
392
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
393
|
+
login: [36m[Function: login][39m,
|
|
394
|
+
logout: [36m[Function: logout][39m
|
|
395
|
+
}
|
|
396
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
397
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
398
|
+
[useContext] Signal value: {
|
|
399
|
+
fontSize: [36m[Function: get][39m,
|
|
400
|
+
setFontSize: [36m[Function: set][39m,
|
|
401
|
+
notifications: [36m[Function: get][39m,
|
|
402
|
+
setNotifications: [36m[Function: set][39m,
|
|
403
|
+
language: [36m[Function: get][39m,
|
|
404
|
+
setLanguage: [36m[Function: set][39m,
|
|
405
|
+
animations: [36m[Function: get][39m,
|
|
406
|
+
setAnimations: [36m[Function: set][39m
|
|
407
|
+
}
|
|
408
|
+
[REGISTRY.execute] RESULT: component:ContextTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
409
|
+
|
|
410
|
+
[90mstdout[2m | src/showcase/pages/__tests__/context-test.test.ts[2m > [22m[2mContextTestPage[2m > [22m[2mTheme Context[2m > [22m[2mshould switch to light theme when clicked
|
|
411
|
+
[22m[39m[REGISTRY.execute] START: component:ContextTestPage parentId: [1mnull[22m
|
|
412
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
413
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
414
|
+
[useContext] Signal value: {
|
|
415
|
+
theme: [36m[Function: get][39m,
|
|
416
|
+
setTheme: [36m[Function: set][39m,
|
|
417
|
+
primaryColor: [36m[Function: get][39m,
|
|
418
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
419
|
+
}
|
|
420
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
421
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
422
|
+
[useContext] Signal value: {
|
|
423
|
+
user: [36m[Function: get][39m,
|
|
424
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
425
|
+
login: [36m[Function: login][39m,
|
|
426
|
+
logout: [36m[Function: logout][39m
|
|
427
|
+
}
|
|
428
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
429
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
430
|
+
[useContext] Signal value: {
|
|
431
|
+
fontSize: [36m[Function: get][39m,
|
|
432
|
+
setFontSize: [36m[Function: set][39m,
|
|
433
|
+
notifications: [36m[Function: get][39m,
|
|
434
|
+
setNotifications: [36m[Function: set][39m,
|
|
435
|
+
language: [36m[Function: get][39m,
|
|
436
|
+
setLanguage: [36m[Function: set][39m,
|
|
437
|
+
animations: [36m[Function: get][39m,
|
|
438
|
+
setAnimations: [36m[Function: set][39m
|
|
439
|
+
}
|
|
440
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
441
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
442
|
+
[useContext] Signal value: {
|
|
443
|
+
theme: [36m[Function: get][39m,
|
|
444
|
+
setTheme: [36m[Function: set][39m,
|
|
445
|
+
primaryColor: [36m[Function: get][39m,
|
|
446
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
447
|
+
}
|
|
448
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
449
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
450
|
+
[useContext] Signal value: {
|
|
451
|
+
theme: [36m[Function: get][39m,
|
|
452
|
+
setTheme: [36m[Function: set][39m,
|
|
453
|
+
primaryColor: [36m[Function: get][39m,
|
|
454
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
455
|
+
}
|
|
456
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
457
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
458
|
+
[useContext] Signal value: {
|
|
459
|
+
theme: [36m[Function: get][39m,
|
|
460
|
+
setTheme: [36m[Function: set][39m,
|
|
461
|
+
primaryColor: [36m[Function: get][39m,
|
|
462
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
463
|
+
}
|
|
464
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
465
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
466
|
+
[useContext] Signal value: {
|
|
467
|
+
user: [36m[Function: get][39m,
|
|
468
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
469
|
+
login: [36m[Function: login][39m,
|
|
470
|
+
logout: [36m[Function: logout][39m
|
|
471
|
+
}
|
|
472
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
473
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
474
|
+
[useContext] Signal value: {
|
|
475
|
+
user: [36m[Function: get][39m,
|
|
476
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
477
|
+
login: [36m[Function: login][39m,
|
|
478
|
+
logout: [36m[Function: logout][39m
|
|
479
|
+
}
|
|
480
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
481
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
482
|
+
[useContext] Signal value: {
|
|
483
|
+
fontSize: [36m[Function: get][39m,
|
|
484
|
+
setFontSize: [36m[Function: set][39m,
|
|
485
|
+
notifications: [36m[Function: get][39m,
|
|
486
|
+
setNotifications: [36m[Function: set][39m,
|
|
487
|
+
language: [36m[Function: get][39m,
|
|
488
|
+
setLanguage: [36m[Function: set][39m,
|
|
489
|
+
animations: [36m[Function: get][39m,
|
|
490
|
+
setAnimations: [36m[Function: set][39m
|
|
491
|
+
}
|
|
492
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
493
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
494
|
+
[useContext] Signal value: {
|
|
495
|
+
theme: [36m[Function: get][39m,
|
|
496
|
+
setTheme: [36m[Function: set][39m,
|
|
497
|
+
primaryColor: [36m[Function: get][39m,
|
|
498
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
499
|
+
}
|
|
500
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
501
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
502
|
+
[useContext] Signal value: {
|
|
503
|
+
user: [36m[Function: get][39m,
|
|
504
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
505
|
+
login: [36m[Function: login][39m,
|
|
506
|
+
logout: [36m[Function: logout][39m
|
|
507
|
+
}
|
|
508
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
509
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
510
|
+
[useContext] Signal value: {
|
|
511
|
+
fontSize: [36m[Function: get][39m,
|
|
512
|
+
setFontSize: [36m[Function: set][39m,
|
|
513
|
+
notifications: [36m[Function: get][39m,
|
|
514
|
+
setNotifications: [36m[Function: set][39m,
|
|
515
|
+
language: [36m[Function: get][39m,
|
|
516
|
+
setLanguage: [36m[Function: set][39m,
|
|
517
|
+
animations: [36m[Function: get][39m,
|
|
518
|
+
setAnimations: [36m[Function: set][39m
|
|
519
|
+
}
|
|
520
|
+
[REGISTRY.execute] RESULT: component:ContextTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
521
|
+
|
|
522
|
+
[90mstdout[2m | src/showcase/pages/__tests__/resource-test.test.ts[2m > [22m[2mResourceTestPage[2m > [22m[2mUser Resource[2m > [22m[2mshould refetch when Next User clicked
|
|
523
|
+
[22m[39m[REGISTRY.execute] START: component:ResourceTestPage parentId: [1mnull[22m
|
|
524
|
+
[REGISTRY.execute] RESULT: component:ResourceTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
525
|
+
|
|
526
|
+
[90mstdout[2m | src/showcase/pages/__tests__/home.test.ts[2m > [22m[2mHomePage[2m > [22m[2mStructure[2m > [22m[2mshould have proper section layout
|
|
527
|
+
[22m[39m[REGISTRY.execute] START: component:HomePage parentId: [1mnull[22m
|
|
528
|
+
[REGISTRY.execute] START: component:Counter parentId: [1mnull[22m
|
|
529
|
+
[Counter] Initializing with id: home-counter
|
|
530
|
+
[REGISTRY.execute] RESULT: component:Counter result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
531
|
+
[REGISTRY.execute] RESULT: component:HomePage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
532
|
+
|
|
533
|
+
[90mstdout[2m | src/showcase/pages/__tests__/about.test.ts[2m > [22m[2mAboutPage[2m > [22m[2mRendering[2m > [22m[2mshould render back to home button
|
|
534
|
+
[22m[39m[REGISTRY.execute] START: component:AboutPage parentId: [1mnull[22m
|
|
535
|
+
[REGISTRY.execute] RESULT: component:AboutPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
536
|
+
|
|
537
|
+
[90mstdout[2m | src/showcase/__tests__/integration/reactivity-cross-component.test.ts[2m > [22m[2mReactivity Cross-Component Integration[2m > [22m[2mBatch Update Integration[2m > [22m[2mshould update all related displays simultaneously
|
|
538
|
+
[22m[39m[REGISTRY.execute] START: component:ReactivityTestPage parentId: [1mnull[22m
|
|
539
|
+
[Effect] Full name changed to: John Doe
|
|
540
|
+
[REGISTRY.execute] RESULT: component:ReactivityTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
541
|
+
[Effect] Full name changed to: John Doe
|
|
542
|
+
|
|
543
|
+
[31mΓ¥»[39m src/showcase/pages/__tests__/home.test.ts [2m([22m[2m4 tests[22m[2m | [22m[31m1 failed[39m[2m)[22m[32m 57[2mms[22m[39m
|
|
544
|
+
[32mΓ£ô[39m should render welcome heading[32m 37[2mms[22m[39m
|
|
545
|
+
[32mΓ£ô[39m should render description text[32m 7[2mms[22m[39m
|
|
546
|
+
[31m [31m×[31m should render Counter component[39m[32m 7[2mms[22m[39m
|
|
547
|
+
[32mΓ£ô[39m should have proper section layout[32m 4[2mms[22m[39m
|
|
548
|
+
[90mstdout[2m | src/showcase/pages/__tests__/about.test.ts[2m > [22m[2mAboutPage[2m > [22m[2mToggle Details Behavior[2m > [22m[2mshould hide details by default
|
|
549
|
+
[22m[39m[REGISTRY.execute] START: component:AboutPage parentId: [1mnull[22m
|
|
550
|
+
[REGISTRY.execute] RESULT: component:AboutPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
551
|
+
|
|
552
|
+
[90mstdout[2m | src/showcase/__tests__/integration/reactivity-cross-component.test.ts[2m > [22m[2mReactivity Cross-Component Integration[2m > [22m[2mBatch Update Integration[2m > [22m[2mshould maintain consistency after reset
|
|
553
|
+
[22m[39m[REGISTRY.execute] START: component:ReactivityTestPage parentId: [1mnull[22m
|
|
554
|
+
[Effect] Full name changed to: John Doe
|
|
555
|
+
[REGISTRY.execute] RESULT: component:ReactivityTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
556
|
+
[Effect] Full name changed to: John Doe
|
|
557
|
+
|
|
558
|
+
[90mstdout[2m | src/showcase/pages/__tests__/resource-test.test.ts[2m > [22m[2mResourceTestPage[2m > [22m[2mUser Resource[2m > [22m[2mshould cycle back to user 1 after user 10
|
|
559
|
+
[22m[39m[REGISTRY.execute] START: component:ResourceTestPage parentId: [1mnull[22m
|
|
560
|
+
[REGISTRY.execute] RESULT: component:ResourceTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
561
|
+
|
|
562
|
+
[32mΓ£ô[39m src/showcase/__tests__/integration/reactivity-cross-component.test.ts [2m([22m[2m4 tests[22m[2m)[22m[32m 76[2mms[22m[39m
|
|
563
|
+
[90mstdout[2m | src/showcase/pages/__tests__/jsx-test.test.ts[2m > [22m[2mJsxTestPage[2m > [22m[2mReactive Attributes[2m > [22m[2mshould change background color when button clicked
|
|
564
|
+
[22m[39m[REGISTRY.execute] START: component:JsxTestPage parentId: [1mnull[22m
|
|
565
|
+
[REGISTRY.execute] RESULT: component:JsxTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
566
|
+
|
|
567
|
+
[90mstdout[2m | src/showcase/pages/__tests__/about.test.ts[2m > [22m[2mAboutPage[2m > [22m[2mToggle Details Behavior[2m > [22m[2mshould show details after clicking toggle button
|
|
568
|
+
[22m[39m[REGISTRY.execute] START: component:AboutPage parentId: [1mnull[22m
|
|
569
|
+
[REGISTRY.execute] RESULT: component:AboutPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
570
|
+
|
|
571
|
+
[90mstdout[2m | src/showcase/pages/__tests__/context-test.test.ts[2m > [22m[2mContextTestPage[2m > [22m[2mTheme Context[2m > [22m[2mshould update primary color
|
|
572
|
+
[22m[39m[REGISTRY.execute] START: component:ContextTestPage parentId: [1mnull[22m
|
|
573
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
574
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
575
|
+
[useContext] Signal value: {
|
|
576
|
+
theme: [36m[Function: get][39m,
|
|
577
|
+
setTheme: [36m[Function: set][39m,
|
|
578
|
+
primaryColor: [36m[Function: get][39m,
|
|
579
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
580
|
+
}
|
|
581
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
582
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
583
|
+
[useContext] Signal value: {
|
|
584
|
+
user: [36m[Function: get][39m,
|
|
585
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
586
|
+
login: [36m[Function: login][39m,
|
|
587
|
+
logout: [36m[Function: logout][39m
|
|
588
|
+
}
|
|
589
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
590
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
591
|
+
[useContext] Signal value: {
|
|
592
|
+
fontSize: [36m[Function: get][39m,
|
|
593
|
+
setFontSize: [36m[Function: set][39m,
|
|
594
|
+
notifications: [36m[Function: get][39m,
|
|
595
|
+
setNotifications: [36m[Function: set][39m,
|
|
596
|
+
language: [36m[Function: get][39m,
|
|
597
|
+
setLanguage: [36m[Function: set][39m,
|
|
598
|
+
animations: [36m[Function: get][39m,
|
|
599
|
+
setAnimations: [36m[Function: set][39m
|
|
600
|
+
}
|
|
601
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
602
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
603
|
+
[useContext] Signal value: {
|
|
604
|
+
theme: [36m[Function: get][39m,
|
|
605
|
+
setTheme: [36m[Function: set][39m,
|
|
606
|
+
primaryColor: [36m[Function: get][39m,
|
|
607
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
608
|
+
}
|
|
609
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
610
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
611
|
+
[useContext] Signal value: {
|
|
612
|
+
theme: [36m[Function: get][39m,
|
|
613
|
+
setTheme: [36m[Function: set][39m,
|
|
614
|
+
primaryColor: [36m[Function: get][39m,
|
|
615
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
616
|
+
}
|
|
617
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
618
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
619
|
+
[useContext] Signal value: {
|
|
620
|
+
theme: [36m[Function: get][39m,
|
|
621
|
+
setTheme: [36m[Function: set][39m,
|
|
622
|
+
primaryColor: [36m[Function: get][39m,
|
|
623
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
624
|
+
}
|
|
625
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
626
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
627
|
+
[useContext] Signal value: {
|
|
628
|
+
user: [36m[Function: get][39m,
|
|
629
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
630
|
+
login: [36m[Function: login][39m,
|
|
631
|
+
logout: [36m[Function: logout][39m
|
|
632
|
+
}
|
|
633
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
634
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
635
|
+
[useContext] Signal value: {
|
|
636
|
+
user: [36m[Function: get][39m,
|
|
637
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
638
|
+
login: [36m[Function: login][39m,
|
|
639
|
+
logout: [36m[Function: logout][39m
|
|
640
|
+
}
|
|
641
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
642
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
643
|
+
[useContext] Signal value: {
|
|
644
|
+
fontSize: [36m[Function: get][39m,
|
|
645
|
+
setFontSize: [36m[Function: set][39m,
|
|
646
|
+
notifications: [36m[Function: get][39m,
|
|
647
|
+
setNotifications: [36m[Function: set][39m,
|
|
648
|
+
language: [36m[Function: get][39m,
|
|
649
|
+
setLanguage: [36m[Function: set][39m,
|
|
650
|
+
animations: [36m[Function: get][39m,
|
|
651
|
+
setAnimations: [36m[Function: set][39m
|
|
652
|
+
}
|
|
653
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
654
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
655
|
+
[useContext] Signal value: {
|
|
656
|
+
theme: [36m[Function: get][39m,
|
|
657
|
+
setTheme: [36m[Function: set][39m,
|
|
658
|
+
primaryColor: [36m[Function: get][39m,
|
|
659
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
660
|
+
}
|
|
661
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
662
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
663
|
+
[useContext] Signal value: {
|
|
664
|
+
user: [36m[Function: get][39m,
|
|
665
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
666
|
+
login: [36m[Function: login][39m,
|
|
667
|
+
logout: [36m[Function: logout][39m
|
|
668
|
+
}
|
|
669
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
670
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
671
|
+
[useContext] Signal value: {
|
|
672
|
+
fontSize: [36m[Function: get][39m,
|
|
673
|
+
setFontSize: [36m[Function: set][39m,
|
|
674
|
+
notifications: [36m[Function: get][39m,
|
|
675
|
+
setNotifications: [36m[Function: set][39m,
|
|
676
|
+
language: [36m[Function: get][39m,
|
|
677
|
+
setLanguage: [36m[Function: set][39m,
|
|
678
|
+
animations: [36m[Function: get][39m,
|
|
679
|
+
setAnimations: [36m[Function: set][39m
|
|
680
|
+
}
|
|
681
|
+
[REGISTRY.execute] RESULT: component:ContextTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
682
|
+
|
|
683
|
+
[90mstdout[2m | src/showcase/__tests__/integration/context-provider-consumer.test.ts[2m > [22m[2mContext Provider-Consumer Integration[2m > [22m[2mMulti-Context Propagation[2m > [22m[2mshould update all consumers when provider value changes
|
|
684
|
+
[22m[39m[REGISTRY.execute] START: component:ContextTestPage parentId: [1mnull[22m
|
|
685
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
686
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
687
|
+
[useContext] Signal value: {
|
|
688
|
+
theme: [36m[Function: get][39m,
|
|
689
|
+
setTheme: [36m[Function: set][39m,
|
|
690
|
+
primaryColor: [36m[Function: get][39m,
|
|
691
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
692
|
+
}
|
|
693
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
694
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
695
|
+
[useContext] Signal value: {
|
|
696
|
+
user: [36m[Function: get][39m,
|
|
697
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
698
|
+
login: [36m[Function: login][39m,
|
|
699
|
+
logout: [36m[Function: logout][39m
|
|
700
|
+
}
|
|
701
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
702
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
703
|
+
[useContext] Signal value: {
|
|
704
|
+
fontSize: [36m[Function: get][39m,
|
|
705
|
+
setFontSize: [36m[Function: set][39m,
|
|
706
|
+
notifications: [36m[Function: get][39m,
|
|
707
|
+
setNotifications: [36m[Function: set][39m,
|
|
708
|
+
language: [36m[Function: get][39m,
|
|
709
|
+
setLanguage: [36m[Function: set][39m,
|
|
710
|
+
animations: [36m[Function: get][39m,
|
|
711
|
+
setAnimations: [36m[Function: set][39m
|
|
712
|
+
}
|
|
713
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
714
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
715
|
+
[useContext] Signal value: {
|
|
716
|
+
theme: [36m[Function: get][39m,
|
|
717
|
+
setTheme: [36m[Function: set][39m,
|
|
718
|
+
primaryColor: [36m[Function: get][39m,
|
|
719
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
720
|
+
}
|
|
721
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
722
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
723
|
+
[useContext] Signal value: {
|
|
724
|
+
theme: [36m[Function: get][39m,
|
|
725
|
+
setTheme: [36m[Function: set][39m,
|
|
726
|
+
primaryColor: [36m[Function: get][39m,
|
|
727
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
728
|
+
}
|
|
729
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
730
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
731
|
+
[useContext] Signal value: {
|
|
732
|
+
theme: [36m[Function: get][39m,
|
|
733
|
+
setTheme: [36m[Function: set][39m,
|
|
734
|
+
primaryColor: [36m[Function: get][39m,
|
|
735
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
736
|
+
}
|
|
737
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
738
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
739
|
+
[useContext] Signal value: {
|
|
740
|
+
user: [36m[Function: get][39m,
|
|
741
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
742
|
+
login: [36m[Function: login][39m,
|
|
743
|
+
logout: [36m[Function: logout][39m
|
|
744
|
+
}
|
|
745
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
746
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
747
|
+
[useContext] Signal value: {
|
|
748
|
+
user: [36m[Function: get][39m,
|
|
749
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
750
|
+
login: [36m[Function: login][39m,
|
|
751
|
+
logout: [36m[Function: logout][39m
|
|
752
|
+
}
|
|
753
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
754
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
755
|
+
[useContext] Signal value: {
|
|
756
|
+
fontSize: [36m[Function: get][39m,
|
|
757
|
+
setFontSize: [36m[Function: set][39m,
|
|
758
|
+
notifications: [36m[Function: get][39m,
|
|
759
|
+
setNotifications: [36m[Function: set][39m,
|
|
760
|
+
language: [36m[Function: get][39m,
|
|
761
|
+
setLanguage: [36m[Function: set][39m,
|
|
762
|
+
animations: [36m[Function: get][39m,
|
|
763
|
+
setAnimations: [36m[Function: set][39m
|
|
764
|
+
}
|
|
765
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
766
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
767
|
+
[useContext] Signal value: {
|
|
768
|
+
theme: [36m[Function: get][39m,
|
|
769
|
+
setTheme: [36m[Function: set][39m,
|
|
770
|
+
primaryColor: [36m[Function: get][39m,
|
|
771
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
772
|
+
}
|
|
773
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
774
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
775
|
+
[useContext] Signal value: {
|
|
776
|
+
user: [36m[Function: get][39m,
|
|
777
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
778
|
+
login: [36m[Function: login][39m,
|
|
779
|
+
logout: [36m[Function: logout][39m
|
|
780
|
+
}
|
|
781
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
782
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
783
|
+
[useContext] Signal value: {
|
|
784
|
+
fontSize: [36m[Function: get][39m,
|
|
785
|
+
setFontSize: [36m[Function: set][39m,
|
|
786
|
+
notifications: [36m[Function: get][39m,
|
|
787
|
+
setNotifications: [36m[Function: set][39m,
|
|
788
|
+
language: [36m[Function: get][39m,
|
|
789
|
+
setLanguage: [36m[Function: set][39m,
|
|
790
|
+
animations: [36m[Function: get][39m,
|
|
791
|
+
setAnimations: [36m[Function: set][39m
|
|
792
|
+
}
|
|
793
|
+
[REGISTRY.execute] RESULT: component:ContextTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
794
|
+
|
|
795
|
+
[90mstdout[2m | src/showcase/pages/__tests__/about.test.ts[2m > [22m[2mAboutPage[2m > [22m[2mToggle Details Behavior[2m > [22m[2mshould toggle button text when clicked
|
|
796
|
+
[22m[39m[REGISTRY.execute] START: component:AboutPage parentId: [1mnull[22m
|
|
797
|
+
[REGISTRY.execute] RESULT: component:AboutPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
798
|
+
|
|
799
|
+
[90mstdout[2m | src/showcase/pages/__tests__/error-boundary-test.test.ts[2m > [22m[2mErrorBoundaryTestPage[2m > [22m[2mBasic Error Boundary[2m > [22m[2mshould catch error when triggered
|
|
800
|
+
[22m[39m[REGISTRY.execute] START: component:ErrorBoundaryTestPage parentId: [1mnull[22m
|
|
801
|
+
[REGISTRY.execute] RESULT: component:ErrorBoundaryTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
802
|
+
|
|
803
|
+
[90mstdout[2m | src/showcase/pages/__tests__/resource-test.test.ts[2m > [22m[2mResourceTestPage[2m > [22m[2mDependent Resource (Posts)[2m > [22m[2mshould load posts after user loads
|
|
804
|
+
[22m[39m[REGISTRY.execute] START: component:ResourceTestPage parentId: [1mnull[22m
|
|
805
|
+
[REGISTRY.execute] RESULT: component:ResourceTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
806
|
+
|
|
807
|
+
[90mstdout[2m | src/showcase/pages/__tests__/jsx-test.test.ts[2m > [22m[2mJsxTestPage[2m > [22m[2mReactive Attributes[2m > [22m[2mshould toggle disabled state
|
|
808
|
+
[22m[39m[REGISTRY.execute] START: component:JsxTestPage parentId: [1mnull[22m
|
|
809
|
+
[REGISTRY.execute] RESULT: component:JsxTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
810
|
+
|
|
811
|
+
[90mstdout[2m | src/showcase/pages/__tests__/about.test.ts[2m > [22m[2mAboutPage[2m > [22m[2mRouter Integration[2m > [22m[2mshould display current route path
|
|
812
|
+
[22m[39m[REGISTRY.execute] START: component:AboutPage parentId: [1mnull[22m
|
|
813
|
+
[REGISTRY.execute] RESULT: component:AboutPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
814
|
+
|
|
815
|
+
[32mΓ£ô[39m src/showcase/pages/__tests__/about.test.ts [2m([22m[2m8 tests[22m[2m)[22m[32m 88[2mms[22m[39m
|
|
816
|
+
[90mstdout[2m | src/showcase/pages/__tests__/resource-test.test.ts[2m > [22m[2mResourceTestPage[2m > [22m[2mDependent Resource (Posts)[2m > [22m[2mshould refetch posts when user changes
|
|
817
|
+
[22m[39m[REGISTRY.execute] START: component:ResourceTestPage parentId: [1mnull[22m
|
|
818
|
+
[REGISTRY.execute] RESULT: component:ResourceTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
819
|
+
|
|
820
|
+
[90mstdout[2m | src/showcase/pages/__tests__/jsx-test.test.ts[2m > [22m[2mJsxTestPage[2m > [22m[2mEvent Handlers[2m > [22m[2mshould increment click count
|
|
821
|
+
[22m[39m[REGISTRY.execute] START: component:JsxTestPage parentId: [1mnull[22m
|
|
822
|
+
[REGISTRY.execute] RESULT: component:JsxTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
823
|
+
|
|
824
|
+
[90mstdout[2m | src/showcase/pages/__tests__/context-test.test.ts[2m > [22m[2mContextTestPage[2m > [22m[2mTheme Context[2m > [22m[2mshould apply theme to all themed components
|
|
825
|
+
[22m[39m[REGISTRY.execute] START: component:ContextTestPage parentId: [1mnull[22m
|
|
826
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
827
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
828
|
+
[useContext] Signal value: {
|
|
829
|
+
theme: [36m[Function: get][39m,
|
|
830
|
+
setTheme: [36m[Function: set][39m,
|
|
831
|
+
primaryColor: [36m[Function: get][39m,
|
|
832
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
833
|
+
}
|
|
834
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
835
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
836
|
+
[useContext] Signal value: {
|
|
837
|
+
user: [36m[Function: get][39m,
|
|
838
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
839
|
+
login: [36m[Function: login][39m,
|
|
840
|
+
logout: [36m[Function: logout][39m
|
|
841
|
+
}
|
|
842
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
843
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
844
|
+
[useContext] Signal value: {
|
|
845
|
+
fontSize: [36m[Function: get][39m,
|
|
846
|
+
setFontSize: [36m[Function: set][39m,
|
|
847
|
+
notifications: [36m[Function: get][39m,
|
|
848
|
+
setNotifications: [36m[Function: set][39m,
|
|
849
|
+
language: [36m[Function: get][39m,
|
|
850
|
+
setLanguage: [36m[Function: set][39m,
|
|
851
|
+
animations: [36m[Function: get][39m,
|
|
852
|
+
setAnimations: [36m[Function: set][39m
|
|
853
|
+
}
|
|
854
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
855
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
856
|
+
[useContext] Signal value: {
|
|
857
|
+
theme: [36m[Function: get][39m,
|
|
858
|
+
setTheme: [36m[Function: set][39m,
|
|
859
|
+
primaryColor: [36m[Function: get][39m,
|
|
860
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
861
|
+
}
|
|
862
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
863
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
864
|
+
[useContext] Signal value: {
|
|
865
|
+
theme: [36m[Function: get][39m,
|
|
866
|
+
setTheme: [36m[Function: set][39m,
|
|
867
|
+
primaryColor: [36m[Function: get][39m,
|
|
868
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
869
|
+
}
|
|
870
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
871
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
872
|
+
[useContext] Signal value: {
|
|
873
|
+
theme: [36m[Function: get][39m,
|
|
874
|
+
setTheme: [36m[Function: set][39m,
|
|
875
|
+
primaryColor: [36m[Function: get][39m,
|
|
876
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
877
|
+
}
|
|
878
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
879
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
880
|
+
[useContext] Signal value: {
|
|
881
|
+
user: [36m[Function: get][39m,
|
|
882
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
883
|
+
login: [36m[Function: login][39m,
|
|
884
|
+
logout: [36m[Function: logout][39m
|
|
885
|
+
}
|
|
886
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
887
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
888
|
+
[useContext] Signal value: {
|
|
889
|
+
user: [36m[Function: get][39m,
|
|
890
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
891
|
+
login: [36m[Function: login][39m,
|
|
892
|
+
logout: [36m[Function: logout][39m
|
|
893
|
+
}
|
|
894
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
895
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
896
|
+
[useContext] Signal value: {
|
|
897
|
+
fontSize: [36m[Function: get][39m,
|
|
898
|
+
setFontSize: [36m[Function: set][39m,
|
|
899
|
+
notifications: [36m[Function: get][39m,
|
|
900
|
+
setNotifications: [36m[Function: set][39m,
|
|
901
|
+
language: [36m[Function: get][39m,
|
|
902
|
+
setLanguage: [36m[Function: set][39m,
|
|
903
|
+
animations: [36m[Function: get][39m,
|
|
904
|
+
setAnimations: [36m[Function: set][39m
|
|
905
|
+
}
|
|
906
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
907
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
908
|
+
[useContext] Signal value: {
|
|
909
|
+
theme: [36m[Function: get][39m,
|
|
910
|
+
setTheme: [36m[Function: set][39m,
|
|
911
|
+
primaryColor: [36m[Function: get][39m,
|
|
912
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
913
|
+
}
|
|
914
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
915
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
916
|
+
[useContext] Signal value: {
|
|
917
|
+
user: [36m[Function: get][39m,
|
|
918
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
919
|
+
login: [36m[Function: login][39m,
|
|
920
|
+
logout: [36m[Function: logout][39m
|
|
921
|
+
}
|
|
922
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
923
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
924
|
+
[useContext] Signal value: {
|
|
925
|
+
fontSize: [36m[Function: get][39m,
|
|
926
|
+
setFontSize: [36m[Function: set][39m,
|
|
927
|
+
notifications: [36m[Function: get][39m,
|
|
928
|
+
setNotifications: [36m[Function: set][39m,
|
|
929
|
+
language: [36m[Function: get][39m,
|
|
930
|
+
setLanguage: [36m[Function: set][39m,
|
|
931
|
+
animations: [36m[Function: get][39m,
|
|
932
|
+
setAnimations: [36m[Function: set][39m
|
|
933
|
+
}
|
|
934
|
+
[REGISTRY.execute] RESULT: component:ContextTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
935
|
+
|
|
936
|
+
[90mstdout[2m | src/showcase/__tests__/integration/context-provider-consumer.test.ts[2m > [22m[2mContext Provider-Consumer Integration[2m > [22m[2mIndependent Context Updates[2m > [22m[2mshould update user context without affecting theme
|
|
937
|
+
[22m[39m[REGISTRY.execute] START: component:ContextTestPage parentId: [1mnull[22m
|
|
938
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
939
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
940
|
+
[useContext] Signal value: {
|
|
941
|
+
theme: [36m[Function: get][39m,
|
|
942
|
+
setTheme: [36m[Function: set][39m,
|
|
943
|
+
primaryColor: [36m[Function: get][39m,
|
|
944
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
945
|
+
}
|
|
946
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
947
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
948
|
+
[useContext] Signal value: {
|
|
949
|
+
user: [36m[Function: get][39m,
|
|
950
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
951
|
+
login: [36m[Function: login][39m,
|
|
952
|
+
logout: [36m[Function: logout][39m
|
|
953
|
+
}
|
|
954
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
955
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
956
|
+
[useContext] Signal value: {
|
|
957
|
+
fontSize: [36m[Function: get][39m,
|
|
958
|
+
setFontSize: [36m[Function: set][39m,
|
|
959
|
+
notifications: [36m[Function: get][39m,
|
|
960
|
+
setNotifications: [36m[Function: set][39m,
|
|
961
|
+
language: [36m[Function: get][39m,
|
|
962
|
+
setLanguage: [36m[Function: set][39m,
|
|
963
|
+
animations: [36m[Function: get][39m,
|
|
964
|
+
setAnimations: [36m[Function: set][39m
|
|
965
|
+
}
|
|
966
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
967
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
968
|
+
[useContext] Signal value: {
|
|
969
|
+
theme: [36m[Function: get][39m,
|
|
970
|
+
setTheme: [36m[Function: set][39m,
|
|
971
|
+
primaryColor: [36m[Function: get][39m,
|
|
972
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
973
|
+
}
|
|
974
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
975
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
976
|
+
[useContext] Signal value: {
|
|
977
|
+
theme: [36m[Function: get][39m,
|
|
978
|
+
setTheme: [36m[Function: set][39m,
|
|
979
|
+
primaryColor: [36m[Function: get][39m,
|
|
980
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
981
|
+
}
|
|
982
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
983
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
984
|
+
[useContext] Signal value: {
|
|
985
|
+
theme: [36m[Function: get][39m,
|
|
986
|
+
setTheme: [36m[Function: set][39m,
|
|
987
|
+
primaryColor: [36m[Function: get][39m,
|
|
988
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
989
|
+
}
|
|
990
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
991
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
992
|
+
[useContext] Signal value: {
|
|
993
|
+
user: [36m[Function: get][39m,
|
|
994
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
995
|
+
login: [36m[Function: login][39m,
|
|
996
|
+
logout: [36m[Function: logout][39m
|
|
997
|
+
}
|
|
998
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
999
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1000
|
+
[useContext] Signal value: {
|
|
1001
|
+
user: [36m[Function: get][39m,
|
|
1002
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1003
|
+
login: [36m[Function: login][39m,
|
|
1004
|
+
logout: [36m[Function: logout][39m
|
|
1005
|
+
}
|
|
1006
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1007
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1008
|
+
[useContext] Signal value: {
|
|
1009
|
+
fontSize: [36m[Function: get][39m,
|
|
1010
|
+
setFontSize: [36m[Function: set][39m,
|
|
1011
|
+
notifications: [36m[Function: get][39m,
|
|
1012
|
+
setNotifications: [36m[Function: set][39m,
|
|
1013
|
+
language: [36m[Function: get][39m,
|
|
1014
|
+
setLanguage: [36m[Function: set][39m,
|
|
1015
|
+
animations: [36m[Function: get][39m,
|
|
1016
|
+
setAnimations: [36m[Function: set][39m
|
|
1017
|
+
}
|
|
1018
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1019
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1020
|
+
[useContext] Signal value: {
|
|
1021
|
+
theme: [36m[Function: get][39m,
|
|
1022
|
+
setTheme: [36m[Function: set][39m,
|
|
1023
|
+
primaryColor: [36m[Function: get][39m,
|
|
1024
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1025
|
+
}
|
|
1026
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1027
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1028
|
+
[useContext] Signal value: {
|
|
1029
|
+
user: [36m[Function: get][39m,
|
|
1030
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1031
|
+
login: [36m[Function: login][39m,
|
|
1032
|
+
logout: [36m[Function: logout][39m
|
|
1033
|
+
}
|
|
1034
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1035
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1036
|
+
[useContext] Signal value: {
|
|
1037
|
+
fontSize: [36m[Function: get][39m,
|
|
1038
|
+
setFontSize: [36m[Function: set][39m,
|
|
1039
|
+
notifications: [36m[Function: get][39m,
|
|
1040
|
+
setNotifications: [36m[Function: set][39m,
|
|
1041
|
+
language: [36m[Function: get][39m,
|
|
1042
|
+
setLanguage: [36m[Function: set][39m,
|
|
1043
|
+
animations: [36m[Function: get][39m,
|
|
1044
|
+
setAnimations: [36m[Function: set][39m
|
|
1045
|
+
}
|
|
1046
|
+
[REGISTRY.execute] RESULT: component:ContextTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1047
|
+
|
|
1048
|
+
[90mstdout[2m | src/showcase/pages/__tests__/jsx-test.test.ts[2m > [22m[2mJsxTestPage[2m > [22m[2mEvent Handlers[2m > [22m[2mshould reset click count
|
|
1049
|
+
[22m[39m[REGISTRY.execute] START: component:JsxTestPage parentId: [1mnull[22m
|
|
1050
|
+
[REGISTRY.execute] RESULT: component:JsxTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1051
|
+
|
|
1052
|
+
[90mstdout[2m | src/showcase/pages/__tests__/error-boundary-test.test.ts[2m > [22m[2mErrorBoundaryTestPage[2m > [22m[2mBasic Error Boundary[2m > [22m[2mshould display custom error message
|
|
1053
|
+
[22m[39m[REGISTRY.execute] START: component:ErrorBoundaryTestPage parentId: [1mnull[22m
|
|
1054
|
+
[REGISTRY.execute] RESULT: component:ErrorBoundaryTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1055
|
+
|
|
1056
|
+
[90mstdout[2m | src/showcase/pages/__tests__/resource-test.test.ts[2m > [22m[2mResourceTestPage[2m > [22m[2mSearch Resource[2m > [22m[2mshould show hint for short queries
|
|
1057
|
+
[22m[39m[REGISTRY.execute] START: component:ResourceTestPage parentId: [1mnull[22m
|
|
1058
|
+
[REGISTRY.execute] RESULT: component:ResourceTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1059
|
+
|
|
1060
|
+
[90mstdout[2m | src/showcase/pages/__tests__/jsx-test.test.ts[2m > [22m[2mJsxTestPage[2m > [22m[2mEvent Handlers[2m > [22m[2mshould capture input value
|
|
1061
|
+
[22m[39m[REGISTRY.execute] START: component:JsxTestPage parentId: [1mnull[22m
|
|
1062
|
+
[REGISTRY.execute] RESULT: component:JsxTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1063
|
+
|
|
1064
|
+
[90mstdout[2m | src/showcase/pages/__tests__/context-test.test.ts[2m > [22m[2mContextTestPage[2m > [22m[2mUser Context[2m > [22m[2mshould show not logged in state initially
|
|
1065
|
+
[22m[39m[REGISTRY.execute] START: component:ContextTestPage parentId: [1mnull[22m
|
|
1066
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1067
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1068
|
+
[useContext] Signal value: {
|
|
1069
|
+
theme: [36m[Function: get][39m,
|
|
1070
|
+
setTheme: [36m[Function: set][39m,
|
|
1071
|
+
primaryColor: [36m[Function: get][39m,
|
|
1072
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1073
|
+
}
|
|
1074
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1075
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1076
|
+
[useContext] Signal value: {
|
|
1077
|
+
user: [36m[Function: get][39m,
|
|
1078
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1079
|
+
login: [36m[Function: login][39m,
|
|
1080
|
+
logout: [36m[Function: logout][39m
|
|
1081
|
+
}
|
|
1082
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1083
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1084
|
+
[useContext] Signal value: {
|
|
1085
|
+
fontSize: [36m[Function: get][39m,
|
|
1086
|
+
setFontSize: [36m[Function: set][39m,
|
|
1087
|
+
notifications: [36m[Function: get][39m,
|
|
1088
|
+
setNotifications: [36m[Function: set][39m,
|
|
1089
|
+
language: [36m[Function: get][39m,
|
|
1090
|
+
setLanguage: [36m[Function: set][39m,
|
|
1091
|
+
animations: [36m[Function: get][39m,
|
|
1092
|
+
setAnimations: [36m[Function: set][39m
|
|
1093
|
+
}
|
|
1094
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1095
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1096
|
+
[useContext] Signal value: {
|
|
1097
|
+
theme: [36m[Function: get][39m,
|
|
1098
|
+
setTheme: [36m[Function: set][39m,
|
|
1099
|
+
primaryColor: [36m[Function: get][39m,
|
|
1100
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1101
|
+
}
|
|
1102
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1103
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1104
|
+
[useContext] Signal value: {
|
|
1105
|
+
theme: [36m[Function: get][39m,
|
|
1106
|
+
setTheme: [36m[Function: set][39m,
|
|
1107
|
+
primaryColor: [36m[Function: get][39m,
|
|
1108
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1109
|
+
}
|
|
1110
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1111
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1112
|
+
[useContext] Signal value: {
|
|
1113
|
+
theme: [36m[Function: get][39m,
|
|
1114
|
+
setTheme: [36m[Function: set][39m,
|
|
1115
|
+
primaryColor: [36m[Function: get][39m,
|
|
1116
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1117
|
+
}
|
|
1118
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1119
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1120
|
+
[useContext] Signal value: {
|
|
1121
|
+
user: [36m[Function: get][39m,
|
|
1122
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1123
|
+
login: [36m[Function: login][39m,
|
|
1124
|
+
logout: [36m[Function: logout][39m
|
|
1125
|
+
}
|
|
1126
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1127
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1128
|
+
[useContext] Signal value: {
|
|
1129
|
+
user: [36m[Function: get][39m,
|
|
1130
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1131
|
+
login: [36m[Function: login][39m,
|
|
1132
|
+
logout: [36m[Function: logout][39m
|
|
1133
|
+
}
|
|
1134
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1135
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1136
|
+
[useContext] Signal value: {
|
|
1137
|
+
fontSize: [36m[Function: get][39m,
|
|
1138
|
+
setFontSize: [36m[Function: set][39m,
|
|
1139
|
+
notifications: [36m[Function: get][39m,
|
|
1140
|
+
setNotifications: [36m[Function: set][39m,
|
|
1141
|
+
language: [36m[Function: get][39m,
|
|
1142
|
+
setLanguage: [36m[Function: set][39m,
|
|
1143
|
+
animations: [36m[Function: get][39m,
|
|
1144
|
+
setAnimations: [36m[Function: set][39m
|
|
1145
|
+
}
|
|
1146
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1147
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1148
|
+
[useContext] Signal value: {
|
|
1149
|
+
theme: [36m[Function: get][39m,
|
|
1150
|
+
setTheme: [36m[Function: set][39m,
|
|
1151
|
+
primaryColor: [36m[Function: get][39m,
|
|
1152
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1153
|
+
}
|
|
1154
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1155
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1156
|
+
[useContext] Signal value: {
|
|
1157
|
+
user: [36m[Function: get][39m,
|
|
1158
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1159
|
+
login: [36m[Function: login][39m,
|
|
1160
|
+
logout: [36m[Function: logout][39m
|
|
1161
|
+
}
|
|
1162
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1163
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1164
|
+
[useContext] Signal value: {
|
|
1165
|
+
fontSize: [36m[Function: get][39m,
|
|
1166
|
+
setFontSize: [36m[Function: set][39m,
|
|
1167
|
+
notifications: [36m[Function: get][39m,
|
|
1168
|
+
setNotifications: [36m[Function: set][39m,
|
|
1169
|
+
language: [36m[Function: get][39m,
|
|
1170
|
+
setLanguage: [36m[Function: set][39m,
|
|
1171
|
+
animations: [36m[Function: get][39m,
|
|
1172
|
+
setAnimations: [36m[Function: set][39m
|
|
1173
|
+
}
|
|
1174
|
+
[REGISTRY.execute] RESULT: component:ContextTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1175
|
+
|
|
1176
|
+
[32mΓ£ô[39m src/showcase/pages/__tests__/reactivity-test.test.ts [2m([22m[2m10 tests[22m[2m)[22m[32m 106[2mms[22m[39m
|
|
1177
|
+
[90mstdout[2m | src/showcase/__tests__/integration/context-provider-consumer.test.ts[2m > [22m[2mContext Provider-Consumer Integration[2m > [22m[2mIndependent Context Updates[2m > [22m[2mshould update settings context without affecting others
|
|
1178
|
+
[22m[39m[REGISTRY.execute] START: component:ContextTestPage parentId: [1mnull[22m
|
|
1179
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1180
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1181
|
+
[useContext] Signal value: {
|
|
1182
|
+
theme: [36m[Function: get][39m,
|
|
1183
|
+
setTheme: [36m[Function: set][39m,
|
|
1184
|
+
primaryColor: [36m[Function: get][39m,
|
|
1185
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1186
|
+
}
|
|
1187
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1188
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1189
|
+
[useContext] Signal value: {
|
|
1190
|
+
user: [36m[Function: get][39m,
|
|
1191
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1192
|
+
login: [36m[Function: login][39m,
|
|
1193
|
+
logout: [36m[Function: logout][39m
|
|
1194
|
+
}
|
|
1195
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1196
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1197
|
+
[useContext] Signal value: {
|
|
1198
|
+
fontSize: [36m[Function: get][39m,
|
|
1199
|
+
setFontSize: [36m[Function: set][39m,
|
|
1200
|
+
notifications: [36m[Function: get][39m,
|
|
1201
|
+
setNotifications: [36m[Function: set][39m,
|
|
1202
|
+
language: [36m[Function: get][39m,
|
|
1203
|
+
setLanguage: [36m[Function: set][39m,
|
|
1204
|
+
animations: [36m[Function: get][39m,
|
|
1205
|
+
setAnimations: [36m[Function: set][39m
|
|
1206
|
+
}
|
|
1207
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1208
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1209
|
+
[useContext] Signal value: {
|
|
1210
|
+
theme: [36m[Function: get][39m,
|
|
1211
|
+
setTheme: [36m[Function: set][39m,
|
|
1212
|
+
primaryColor: [36m[Function: get][39m,
|
|
1213
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1214
|
+
}
|
|
1215
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1216
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1217
|
+
[useContext] Signal value: {
|
|
1218
|
+
theme: [36m[Function: get][39m,
|
|
1219
|
+
setTheme: [36m[Function: set][39m,
|
|
1220
|
+
primaryColor: [36m[Function: get][39m,
|
|
1221
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1222
|
+
}
|
|
1223
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1224
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1225
|
+
[useContext] Signal value: {
|
|
1226
|
+
theme: [36m[Function: get][39m,
|
|
1227
|
+
setTheme: [36m[Function: set][39m,
|
|
1228
|
+
primaryColor: [36m[Function: get][39m,
|
|
1229
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1230
|
+
}
|
|
1231
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1232
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1233
|
+
[useContext] Signal value: {
|
|
1234
|
+
user: [36m[Function: get][39m,
|
|
1235
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1236
|
+
login: [36m[Function: login][39m,
|
|
1237
|
+
logout: [36m[Function: logout][39m
|
|
1238
|
+
}
|
|
1239
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1240
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1241
|
+
[useContext] Signal value: {
|
|
1242
|
+
user: [36m[Function: get][39m,
|
|
1243
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1244
|
+
login: [36m[Function: login][39m,
|
|
1245
|
+
logout: [36m[Function: logout][39m
|
|
1246
|
+
}
|
|
1247
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1248
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1249
|
+
[useContext] Signal value: {
|
|
1250
|
+
fontSize: [36m[Function: get][39m,
|
|
1251
|
+
setFontSize: [36m[Function: set][39m,
|
|
1252
|
+
notifications: [36m[Function: get][39m,
|
|
1253
|
+
setNotifications: [36m[Function: set][39m,
|
|
1254
|
+
language: [36m[Function: get][39m,
|
|
1255
|
+
setLanguage: [36m[Function: set][39m,
|
|
1256
|
+
animations: [36m[Function: get][39m,
|
|
1257
|
+
setAnimations: [36m[Function: set][39m
|
|
1258
|
+
}
|
|
1259
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1260
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1261
|
+
[useContext] Signal value: {
|
|
1262
|
+
theme: [36m[Function: get][39m,
|
|
1263
|
+
setTheme: [36m[Function: set][39m,
|
|
1264
|
+
primaryColor: [36m[Function: get][39m,
|
|
1265
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1266
|
+
}
|
|
1267
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1268
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1269
|
+
[useContext] Signal value: {
|
|
1270
|
+
user: [36m[Function: get][39m,
|
|
1271
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1272
|
+
login: [36m[Function: login][39m,
|
|
1273
|
+
logout: [36m[Function: logout][39m
|
|
1274
|
+
}
|
|
1275
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1276
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1277
|
+
[useContext] Signal value: {
|
|
1278
|
+
fontSize: [36m[Function: get][39m,
|
|
1279
|
+
setFontSize: [36m[Function: set][39m,
|
|
1280
|
+
notifications: [36m[Function: get][39m,
|
|
1281
|
+
setNotifications: [36m[Function: set][39m,
|
|
1282
|
+
language: [36m[Function: get][39m,
|
|
1283
|
+
setLanguage: [36m[Function: set][39m,
|
|
1284
|
+
animations: [36m[Function: get][39m,
|
|
1285
|
+
setAnimations: [36m[Function: set][39m
|
|
1286
|
+
}
|
|
1287
|
+
[REGISTRY.execute] RESULT: component:ContextTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1288
|
+
|
|
1289
|
+
[90mstdout[2m | src/showcase/pages/__tests__/resource-test.test.ts[2m > [22m[2mResourceTestPage[2m > [22m[2mSearch Resource[2m > [22m[2mshould trigger search for valid queries
|
|
1290
|
+
[22m[39m[REGISTRY.execute] START: component:ResourceTestPage parentId: [1mnull[22m
|
|
1291
|
+
[REGISTRY.execute] RESULT: component:ResourceTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1292
|
+
|
|
1293
|
+
[90mstdout[2m | src/showcase/pages/__tests__/error-boundary-test.test.ts[2m > [22m[2mErrorBoundaryTestPage[2m > [22m[2mBasic Error Boundary[2m > [22m[2mshould reset boundary when reset clicked
|
|
1294
|
+
[22m[39m[REGISTRY.execute] START: component:ErrorBoundaryTestPage parentId: [1mnull[22m
|
|
1295
|
+
[REGISTRY.execute] RESULT: component:ErrorBoundaryTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1296
|
+
|
|
1297
|
+
[90mstdout[2m | src/showcase/pages/__tests__/jsx-test.test.ts[2m > [22m[2mJsxTestPage[2m > [22m[2mEvent Handlers[2m > [22m[2mshould capture key press
|
|
1298
|
+
[22m[39m[REGISTRY.execute] START: component:JsxTestPage parentId: [1mnull[22m
|
|
1299
|
+
[REGISTRY.execute] RESULT: component:JsxTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1300
|
+
|
|
1301
|
+
[90mstdout[2m | src/showcase/pages/__tests__/resource-test.test.ts[2m > [22m[2mResourceTestPage[2m > [22m[2mSearch Resource[2m > [22m[2mshould display search results
|
|
1302
|
+
[22m[39m[REGISTRY.execute] START: component:ResourceTestPage parentId: [1mnull[22m
|
|
1303
|
+
[REGISTRY.execute] RESULT: component:ResourceTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1304
|
+
|
|
1305
|
+
[90mstdout[2m | src/showcase/__tests__/integration/context-provider-consumer.test.ts[2m > [22m[2mContext Provider-Consumer Integration[2m > [22m[2mCross-Context Dependencies[2m > [22m[2mshould access multiple contexts in single component
|
|
1306
|
+
[22m[39m[REGISTRY.execute] START: component:ContextTestPage parentId: [1mnull[22m
|
|
1307
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1308
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1309
|
+
[useContext] Signal value: {
|
|
1310
|
+
theme: [36m[Function: get][39m,
|
|
1311
|
+
setTheme: [36m[Function: set][39m,
|
|
1312
|
+
primaryColor: [36m[Function: get][39m,
|
|
1313
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1314
|
+
}
|
|
1315
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1316
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1317
|
+
[useContext] Signal value: {
|
|
1318
|
+
user: [36m[Function: get][39m,
|
|
1319
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1320
|
+
login: [36m[Function: login][39m,
|
|
1321
|
+
logout: [36m[Function: logout][39m
|
|
1322
|
+
}
|
|
1323
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1324
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1325
|
+
[useContext] Signal value: {
|
|
1326
|
+
fontSize: [36m[Function: get][39m,
|
|
1327
|
+
setFontSize: [36m[Function: set][39m,
|
|
1328
|
+
notifications: [36m[Function: get][39m,
|
|
1329
|
+
setNotifications: [36m[Function: set][39m,
|
|
1330
|
+
language: [36m[Function: get][39m,
|
|
1331
|
+
setLanguage: [36m[Function: set][39m,
|
|
1332
|
+
animations: [36m[Function: get][39m,
|
|
1333
|
+
setAnimations: [36m[Function: set][39m
|
|
1334
|
+
}
|
|
1335
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1336
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1337
|
+
[useContext] Signal value: {
|
|
1338
|
+
theme: [36m[Function: get][39m,
|
|
1339
|
+
setTheme: [36m[Function: set][39m,
|
|
1340
|
+
primaryColor: [36m[Function: get][39m,
|
|
1341
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1342
|
+
}
|
|
1343
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1344
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1345
|
+
[useContext] Signal value: {
|
|
1346
|
+
theme: [36m[Function: get][39m,
|
|
1347
|
+
setTheme: [36m[Function: set][39m,
|
|
1348
|
+
primaryColor: [36m[Function: get][39m,
|
|
1349
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1350
|
+
}
|
|
1351
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1352
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1353
|
+
[useContext] Signal value: {
|
|
1354
|
+
theme: [36m[Function: get][39m,
|
|
1355
|
+
setTheme: [36m[Function: set][39m,
|
|
1356
|
+
primaryColor: [36m[Function: get][39m,
|
|
1357
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1358
|
+
}
|
|
1359
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1360
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1361
|
+
[useContext] Signal value: {
|
|
1362
|
+
user: [36m[Function: get][39m,
|
|
1363
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1364
|
+
login: [36m[Function: login][39m,
|
|
1365
|
+
logout: [36m[Function: logout][39m
|
|
1366
|
+
}
|
|
1367
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1368
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1369
|
+
[useContext] Signal value: {
|
|
1370
|
+
user: [36m[Function: get][39m,
|
|
1371
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1372
|
+
login: [36m[Function: login][39m,
|
|
1373
|
+
logout: [36m[Function: logout][39m
|
|
1374
|
+
}
|
|
1375
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1376
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1377
|
+
[useContext] Signal value: {
|
|
1378
|
+
fontSize: [36m[Function: get][39m,
|
|
1379
|
+
setFontSize: [36m[Function: set][39m,
|
|
1380
|
+
notifications: [36m[Function: get][39m,
|
|
1381
|
+
setNotifications: [36m[Function: set][39m,
|
|
1382
|
+
language: [36m[Function: get][39m,
|
|
1383
|
+
setLanguage: [36m[Function: set][39m,
|
|
1384
|
+
animations: [36m[Function: get][39m,
|
|
1385
|
+
setAnimations: [36m[Function: set][39m
|
|
1386
|
+
}
|
|
1387
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1388
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1389
|
+
[useContext] Signal value: {
|
|
1390
|
+
theme: [36m[Function: get][39m,
|
|
1391
|
+
setTheme: [36m[Function: set][39m,
|
|
1392
|
+
primaryColor: [36m[Function: get][39m,
|
|
1393
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1394
|
+
}
|
|
1395
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1396
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1397
|
+
[useContext] Signal value: {
|
|
1398
|
+
user: [36m[Function: get][39m,
|
|
1399
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1400
|
+
login: [36m[Function: login][39m,
|
|
1401
|
+
logout: [36m[Function: logout][39m
|
|
1402
|
+
}
|
|
1403
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1404
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1405
|
+
[useContext] Signal value: {
|
|
1406
|
+
fontSize: [36m[Function: get][39m,
|
|
1407
|
+
setFontSize: [36m[Function: set][39m,
|
|
1408
|
+
notifications: [36m[Function: get][39m,
|
|
1409
|
+
setNotifications: [36m[Function: set][39m,
|
|
1410
|
+
language: [36m[Function: get][39m,
|
|
1411
|
+
setLanguage: [36m[Function: set][39m,
|
|
1412
|
+
animations: [36m[Function: get][39m,
|
|
1413
|
+
setAnimations: [36m[Function: set][39m
|
|
1414
|
+
}
|
|
1415
|
+
[REGISTRY.execute] RESULT: component:ContextTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1416
|
+
|
|
1417
|
+
[90mstdout[2m | src/showcase/pages/__tests__/context-test.test.ts[2m > [22m[2mContextTestPage[2m > [22m[2mUser Context[2m > [22m[2mshould login as admin
|
|
1418
|
+
[22m[39m[REGISTRY.execute] START: component:ContextTestPage parentId: [1mnull[22m
|
|
1419
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1420
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1421
|
+
[useContext] Signal value: {
|
|
1422
|
+
theme: [36m[Function: get][39m,
|
|
1423
|
+
setTheme: [36m[Function: set][39m,
|
|
1424
|
+
primaryColor: [36m[Function: get][39m,
|
|
1425
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1426
|
+
}
|
|
1427
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1428
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1429
|
+
[useContext] Signal value: {
|
|
1430
|
+
user: [36m[Function: get][39m,
|
|
1431
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1432
|
+
login: [36m[Function: login][39m,
|
|
1433
|
+
logout: [36m[Function: logout][39m
|
|
1434
|
+
}
|
|
1435
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1436
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1437
|
+
[useContext] Signal value: {
|
|
1438
|
+
fontSize: [36m[Function: get][39m,
|
|
1439
|
+
setFontSize: [36m[Function: set][39m,
|
|
1440
|
+
notifications: [36m[Function: get][39m,
|
|
1441
|
+
setNotifications: [36m[Function: set][39m,
|
|
1442
|
+
language: [36m[Function: get][39m,
|
|
1443
|
+
setLanguage: [36m[Function: set][39m,
|
|
1444
|
+
animations: [36m[Function: get][39m,
|
|
1445
|
+
setAnimations: [36m[Function: set][39m
|
|
1446
|
+
}
|
|
1447
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1448
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1449
|
+
[useContext] Signal value: {
|
|
1450
|
+
theme: [36m[Function: get][39m,
|
|
1451
|
+
setTheme: [36m[Function: set][39m,
|
|
1452
|
+
primaryColor: [36m[Function: get][39m,
|
|
1453
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1454
|
+
}
|
|
1455
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1456
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1457
|
+
[useContext] Signal value: {
|
|
1458
|
+
theme: [36m[Function: get][39m,
|
|
1459
|
+
setTheme: [36m[Function: set][39m,
|
|
1460
|
+
primaryColor: [36m[Function: get][39m,
|
|
1461
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1462
|
+
}
|
|
1463
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1464
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1465
|
+
[useContext] Signal value: {
|
|
1466
|
+
theme: [36m[Function: get][39m,
|
|
1467
|
+
setTheme: [36m[Function: set][39m,
|
|
1468
|
+
primaryColor: [36m[Function: get][39m,
|
|
1469
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1470
|
+
}
|
|
1471
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1472
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1473
|
+
[useContext] Signal value: {
|
|
1474
|
+
user: [36m[Function: get][39m,
|
|
1475
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1476
|
+
login: [36m[Function: login][39m,
|
|
1477
|
+
logout: [36m[Function: logout][39m
|
|
1478
|
+
}
|
|
1479
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1480
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1481
|
+
[useContext] Signal value: {
|
|
1482
|
+
user: [36m[Function: get][39m,
|
|
1483
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1484
|
+
login: [36m[Function: login][39m,
|
|
1485
|
+
logout: [36m[Function: logout][39m
|
|
1486
|
+
}
|
|
1487
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1488
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1489
|
+
[useContext] Signal value: {
|
|
1490
|
+
fontSize: [36m[Function: get][39m,
|
|
1491
|
+
setFontSize: [36m[Function: set][39m,
|
|
1492
|
+
notifications: [36m[Function: get][39m,
|
|
1493
|
+
setNotifications: [36m[Function: set][39m,
|
|
1494
|
+
language: [36m[Function: get][39m,
|
|
1495
|
+
setLanguage: [36m[Function: set][39m,
|
|
1496
|
+
animations: [36m[Function: get][39m,
|
|
1497
|
+
setAnimations: [36m[Function: set][39m
|
|
1498
|
+
}
|
|
1499
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1500
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1501
|
+
[useContext] Signal value: {
|
|
1502
|
+
theme: [36m[Function: get][39m,
|
|
1503
|
+
setTheme: [36m[Function: set][39m,
|
|
1504
|
+
primaryColor: [36m[Function: get][39m,
|
|
1505
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1506
|
+
}
|
|
1507
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1508
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1509
|
+
[useContext] Signal value: {
|
|
1510
|
+
user: [36m[Function: get][39m,
|
|
1511
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1512
|
+
login: [36m[Function: login][39m,
|
|
1513
|
+
logout: [36m[Function: logout][39m
|
|
1514
|
+
}
|
|
1515
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1516
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1517
|
+
[useContext] Signal value: {
|
|
1518
|
+
fontSize: [36m[Function: get][39m,
|
|
1519
|
+
setFontSize: [36m[Function: set][39m,
|
|
1520
|
+
notifications: [36m[Function: get][39m,
|
|
1521
|
+
setNotifications: [36m[Function: set][39m,
|
|
1522
|
+
language: [36m[Function: get][39m,
|
|
1523
|
+
setLanguage: [36m[Function: set][39m,
|
|
1524
|
+
animations: [36m[Function: get][39m,
|
|
1525
|
+
setAnimations: [36m[Function: set][39m
|
|
1526
|
+
}
|
|
1527
|
+
[REGISTRY.execute] RESULT: component:ContextTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1528
|
+
|
|
1529
|
+
[32mΓ£ô[39m src/showcase/__tests__/integration/context-provider-consumer.test.ts [2m([22m[2m5 tests[22m[2m)[22m[32m 128[2mms[22m[39m
|
|
1530
|
+
[90mstdout[2m | src/showcase/pages/__tests__/jsx-test.test.ts[2m > [22m[2mJsxTestPage[2m > [22m[2mReactive Style Objects[2m > [22m[2mshould render with initial font size
|
|
1531
|
+
[22m[39m[REGISTRY.execute] START: component:JsxTestPage parentId: [1mnull[22m
|
|
1532
|
+
[REGISTRY.execute] RESULT: component:JsxTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1533
|
+
|
|
1534
|
+
[90mstdout[2m | src/showcase/pages/__tests__/error-boundary-test.test.ts[2m > [22m[2mErrorBoundaryTestPage[2m > [22m[2mMultiple Independent Boundaries[2m > [22m[2mshould isolate errors to single section
|
|
1535
|
+
[22m[39m[REGISTRY.execute] START: component:ErrorBoundaryTestPage parentId: [1mnull[22m
|
|
1536
|
+
[REGISTRY.execute] RESULT: component:ErrorBoundaryTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1537
|
+
|
|
1538
|
+
[90mstdout[2m | src/showcase/pages/__tests__/jsx-test.test.ts[2m > [22m[2mJsxTestPage[2m > [22m[2mReactive Style Objects[2m > [22m[2mshould increase font size
|
|
1539
|
+
[22m[39m[REGISTRY.execute] START: component:JsxTestPage parentId: [1mnull[22m
|
|
1540
|
+
[REGISTRY.execute] RESULT: component:JsxTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1541
|
+
|
|
1542
|
+
[90mstdout[2m | src/showcase/pages/__tests__/resource-test.test.ts[2m > [22m[2mResourceTestPage[2m > [22m[2mSearch Resource[2m > [22m[2mshould show error for "error" query
|
|
1543
|
+
[22m[39m[REGISTRY.execute] START: component:ResourceTestPage parentId: [1mnull[22m
|
|
1544
|
+
[REGISTRY.execute] RESULT: component:ResourceTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1545
|
+
|
|
1546
|
+
[90mstdout[2m | src/showcase/pages/__tests__/jsx-test.test.ts[2m > [22m[2mJsxTestPage[2m > [22m[2mReactive Style Objects[2m > [22m[2mshould decrease font size
|
|
1547
|
+
[22m[39m[REGISTRY.execute] START: component:JsxTestPage parentId: [1mnull[22m
|
|
1548
|
+
[REGISTRY.execute] RESULT: component:JsxTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1549
|
+
|
|
1550
|
+
[90mstdout[2m | src/showcase/pages/__tests__/context-test.test.ts[2m > [22m[2mContextTestPage[2m > [22m[2mUser Context[2m > [22m[2mshould login as user
|
|
1551
|
+
[22m[39m[REGISTRY.execute] START: component:ContextTestPage parentId: [1mnull[22m
|
|
1552
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1553
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1554
|
+
[useContext] Signal value: {
|
|
1555
|
+
theme: [36m[Function: get][39m,
|
|
1556
|
+
setTheme: [36m[Function: set][39m,
|
|
1557
|
+
primaryColor: [36m[Function: get][39m,
|
|
1558
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1559
|
+
}
|
|
1560
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1561
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1562
|
+
[useContext] Signal value: {
|
|
1563
|
+
user: [36m[Function: get][39m,
|
|
1564
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1565
|
+
login: [36m[Function: login][39m,
|
|
1566
|
+
logout: [36m[Function: logout][39m
|
|
1567
|
+
}
|
|
1568
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1569
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1570
|
+
[useContext] Signal value: {
|
|
1571
|
+
fontSize: [36m[Function: get][39m,
|
|
1572
|
+
setFontSize: [36m[Function: set][39m,
|
|
1573
|
+
notifications: [36m[Function: get][39m,
|
|
1574
|
+
setNotifications: [36m[Function: set][39m,
|
|
1575
|
+
language: [36m[Function: get][39m,
|
|
1576
|
+
setLanguage: [36m[Function: set][39m,
|
|
1577
|
+
animations: [36m[Function: get][39m,
|
|
1578
|
+
setAnimations: [36m[Function: set][39m
|
|
1579
|
+
}
|
|
1580
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1581
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1582
|
+
[useContext] Signal value: {
|
|
1583
|
+
theme: [36m[Function: get][39m,
|
|
1584
|
+
setTheme: [36m[Function: set][39m,
|
|
1585
|
+
primaryColor: [36m[Function: get][39m,
|
|
1586
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1587
|
+
}
|
|
1588
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1589
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1590
|
+
[useContext] Signal value: {
|
|
1591
|
+
theme: [36m[Function: get][39m,
|
|
1592
|
+
setTheme: [36m[Function: set][39m,
|
|
1593
|
+
primaryColor: [36m[Function: get][39m,
|
|
1594
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1595
|
+
}
|
|
1596
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1597
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1598
|
+
[useContext] Signal value: {
|
|
1599
|
+
theme: [36m[Function: get][39m,
|
|
1600
|
+
setTheme: [36m[Function: set][39m,
|
|
1601
|
+
primaryColor: [36m[Function: get][39m,
|
|
1602
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1603
|
+
}
|
|
1604
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1605
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1606
|
+
[useContext] Signal value: {
|
|
1607
|
+
user: [36m[Function: get][39m,
|
|
1608
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1609
|
+
login: [36m[Function: login][39m,
|
|
1610
|
+
logout: [36m[Function: logout][39m
|
|
1611
|
+
}
|
|
1612
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1613
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1614
|
+
[useContext] Signal value: {
|
|
1615
|
+
user: [36m[Function: get][39m,
|
|
1616
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1617
|
+
login: [36m[Function: login][39m,
|
|
1618
|
+
logout: [36m[Function: logout][39m
|
|
1619
|
+
}
|
|
1620
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1621
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1622
|
+
[useContext] Signal value: {
|
|
1623
|
+
fontSize: [36m[Function: get][39m,
|
|
1624
|
+
setFontSize: [36m[Function: set][39m,
|
|
1625
|
+
notifications: [36m[Function: get][39m,
|
|
1626
|
+
setNotifications: [36m[Function: set][39m,
|
|
1627
|
+
language: [36m[Function: get][39m,
|
|
1628
|
+
setLanguage: [36m[Function: set][39m,
|
|
1629
|
+
animations: [36m[Function: get][39m,
|
|
1630
|
+
setAnimations: [36m[Function: set][39m
|
|
1631
|
+
}
|
|
1632
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1633
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1634
|
+
[useContext] Signal value: {
|
|
1635
|
+
theme: [36m[Function: get][39m,
|
|
1636
|
+
setTheme: [36m[Function: set][39m,
|
|
1637
|
+
primaryColor: [36m[Function: get][39m,
|
|
1638
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1639
|
+
}
|
|
1640
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1641
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1642
|
+
[useContext] Signal value: {
|
|
1643
|
+
user: [36m[Function: get][39m,
|
|
1644
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1645
|
+
login: [36m[Function: login][39m,
|
|
1646
|
+
logout: [36m[Function: logout][39m
|
|
1647
|
+
}
|
|
1648
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1649
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1650
|
+
[useContext] Signal value: {
|
|
1651
|
+
fontSize: [36m[Function: get][39m,
|
|
1652
|
+
setFontSize: [36m[Function: set][39m,
|
|
1653
|
+
notifications: [36m[Function: get][39m,
|
|
1654
|
+
setNotifications: [36m[Function: set][39m,
|
|
1655
|
+
language: [36m[Function: get][39m,
|
|
1656
|
+
setLanguage: [36m[Function: set][39m,
|
|
1657
|
+
animations: [36m[Function: get][39m,
|
|
1658
|
+
setAnimations: [36m[Function: set][39m
|
|
1659
|
+
}
|
|
1660
|
+
[REGISTRY.execute] RESULT: component:ContextTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1661
|
+
|
|
1662
|
+
[90mstdout[2m | src/showcase/pages/__tests__/resource-test.test.ts[2m > [22m[2mResourceTestPage[2m > [22m[2mSearch Resource[2m > [22m[2mshould display in stock status
|
|
1663
|
+
[22m[39m[REGISTRY.execute] START: component:ResourceTestPage parentId: [1mnull[22m
|
|
1664
|
+
[REGISTRY.execute] RESULT: component:ResourceTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1665
|
+
|
|
1666
|
+
[31mΓ¥»[39m src/showcase/pages/__tests__/jsx-test.test.ts [2m([22m[2m10 tests[22m[2m | [22m[31m1 failed[39m[2m)[22m[32m 140[2mms[22m[39m
|
|
1667
|
+
[31m [31m×[31m should render initial background color[39m[32m 62[2mms[22m[39m
|
|
1668
|
+
[32mΓ£ô[39m should change background color when button clicked[32m 14[2mms[22m[39m
|
|
1669
|
+
[32mΓ£ô[39m should toggle disabled state[32m 10[2mms[22m[39m
|
|
1670
|
+
[32mΓ£ô[39m should increment click count[32m 9[2mms[22m[39m
|
|
1671
|
+
[32mΓ£ô[39m should reset click count[32m 6[2mms[22m[39m
|
|
1672
|
+
[32mΓ£ô[39m should capture input value[32m 7[2mms[22m[39m
|
|
1673
|
+
[32mΓ£ô[39m should capture key press[32m 12[2mms[22m[39m
|
|
1674
|
+
[32mΓ£ô[39m should render with initial font size[32m 10[2mms[22m[39m
|
|
1675
|
+
[32mΓ£ô[39m should increase font size[32m 4[2mms[22m[39m
|
|
1676
|
+
[32mΓ£ô[39m should decrease font size[32m 4[2mms[22m[39m
|
|
1677
|
+
[90mstdout[2m | src/showcase/pages/__tests__/error-boundary-test.test.ts[2m > [22m[2mErrorBoundaryTestPage[2m > [22m[2mMultiple Independent Boundaries[2m > [22m[2mshould allow multiple sections to error simultaneously
|
|
1678
|
+
[22m[39m[REGISTRY.execute] START: component:ErrorBoundaryTestPage parentId: [1mnull[22m
|
|
1679
|
+
[REGISTRY.execute] RESULT: component:ErrorBoundaryTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1680
|
+
|
|
1681
|
+
[90mstdout[2m | src/showcase/pages/__tests__/context-test.test.ts[2m > [22m[2mContextTestPage[2m > [22m[2mUser Context[2m > [22m[2mshould logout
|
|
1682
|
+
[22m[39m[REGISTRY.execute] START: component:ContextTestPage parentId: [1mnull[22m
|
|
1683
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1684
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1685
|
+
[useContext] Signal value: {
|
|
1686
|
+
theme: [36m[Function: get][39m,
|
|
1687
|
+
setTheme: [36m[Function: set][39m,
|
|
1688
|
+
primaryColor: [36m[Function: get][39m,
|
|
1689
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1690
|
+
}
|
|
1691
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1692
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1693
|
+
[useContext] Signal value: {
|
|
1694
|
+
user: [36m[Function: get][39m,
|
|
1695
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1696
|
+
login: [36m[Function: login][39m,
|
|
1697
|
+
logout: [36m[Function: logout][39m
|
|
1698
|
+
}
|
|
1699
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1700
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1701
|
+
[useContext] Signal value: {
|
|
1702
|
+
fontSize: [36m[Function: get][39m,
|
|
1703
|
+
setFontSize: [36m[Function: set][39m,
|
|
1704
|
+
notifications: [36m[Function: get][39m,
|
|
1705
|
+
setNotifications: [36m[Function: set][39m,
|
|
1706
|
+
language: [36m[Function: get][39m,
|
|
1707
|
+
setLanguage: [36m[Function: set][39m,
|
|
1708
|
+
animations: [36m[Function: get][39m,
|
|
1709
|
+
setAnimations: [36m[Function: set][39m
|
|
1710
|
+
}
|
|
1711
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1712
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1713
|
+
[useContext] Signal value: {
|
|
1714
|
+
theme: [36m[Function: get][39m,
|
|
1715
|
+
setTheme: [36m[Function: set][39m,
|
|
1716
|
+
primaryColor: [36m[Function: get][39m,
|
|
1717
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1718
|
+
}
|
|
1719
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1720
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1721
|
+
[useContext] Signal value: {
|
|
1722
|
+
theme: [36m[Function: get][39m,
|
|
1723
|
+
setTheme: [36m[Function: set][39m,
|
|
1724
|
+
primaryColor: [36m[Function: get][39m,
|
|
1725
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1726
|
+
}
|
|
1727
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1728
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1729
|
+
[useContext] Signal value: {
|
|
1730
|
+
theme: [36m[Function: get][39m,
|
|
1731
|
+
setTheme: [36m[Function: set][39m,
|
|
1732
|
+
primaryColor: [36m[Function: get][39m,
|
|
1733
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1734
|
+
}
|
|
1735
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1736
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1737
|
+
[useContext] Signal value: {
|
|
1738
|
+
user: [36m[Function: get][39m,
|
|
1739
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1740
|
+
login: [36m[Function: login][39m,
|
|
1741
|
+
logout: [36m[Function: logout][39m
|
|
1742
|
+
}
|
|
1743
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1744
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1745
|
+
[useContext] Signal value: {
|
|
1746
|
+
user: [36m[Function: get][39m,
|
|
1747
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1748
|
+
login: [36m[Function: login][39m,
|
|
1749
|
+
logout: [36m[Function: logout][39m
|
|
1750
|
+
}
|
|
1751
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1752
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1753
|
+
[useContext] Signal value: {
|
|
1754
|
+
fontSize: [36m[Function: get][39m,
|
|
1755
|
+
setFontSize: [36m[Function: set][39m,
|
|
1756
|
+
notifications: [36m[Function: get][39m,
|
|
1757
|
+
setNotifications: [36m[Function: set][39m,
|
|
1758
|
+
language: [36m[Function: get][39m,
|
|
1759
|
+
setLanguage: [36m[Function: set][39m,
|
|
1760
|
+
animations: [36m[Function: get][39m,
|
|
1761
|
+
setAnimations: [36m[Function: set][39m
|
|
1762
|
+
}
|
|
1763
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1764
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1765
|
+
[useContext] Signal value: {
|
|
1766
|
+
theme: [36m[Function: get][39m,
|
|
1767
|
+
setTheme: [36m[Function: set][39m,
|
|
1768
|
+
primaryColor: [36m[Function: get][39m,
|
|
1769
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1770
|
+
}
|
|
1771
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1772
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1773
|
+
[useContext] Signal value: {
|
|
1774
|
+
user: [36m[Function: get][39m,
|
|
1775
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1776
|
+
login: [36m[Function: login][39m,
|
|
1777
|
+
logout: [36m[Function: logout][39m
|
|
1778
|
+
}
|
|
1779
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1780
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1781
|
+
[useContext] Signal value: {
|
|
1782
|
+
fontSize: [36m[Function: get][39m,
|
|
1783
|
+
setFontSize: [36m[Function: set][39m,
|
|
1784
|
+
notifications: [36m[Function: get][39m,
|
|
1785
|
+
setNotifications: [36m[Function: set][39m,
|
|
1786
|
+
language: [36m[Function: get][39m,
|
|
1787
|
+
setLanguage: [36m[Function: set][39m,
|
|
1788
|
+
animations: [36m[Function: get][39m,
|
|
1789
|
+
setAnimations: [36m[Function: set][39m
|
|
1790
|
+
}
|
|
1791
|
+
[REGISTRY.execute] RESULT: component:ContextTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1792
|
+
|
|
1793
|
+
[32mΓ£ô[39m src/showcase/pages/__tests__/control-flow-test.test.ts [2m([22m[2m12 tests[22m[2m)[22m[32m 144[2mms[22m[39m
|
|
1794
|
+
[90mstdout[2m | src/showcase/pages/__tests__/context-test.test.ts[2m > [22m[2mContextTestPage[2m > [22m[2mSettings Context[2m > [22m[2mshould render default font size
|
|
1795
|
+
[22m[39m[REGISTRY.execute] START: component:ContextTestPage parentId: [1mnull[22m
|
|
1796
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1797
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1798
|
+
[useContext] Signal value: {
|
|
1799
|
+
theme: [36m[Function: get][39m,
|
|
1800
|
+
setTheme: [36m[Function: set][39m,
|
|
1801
|
+
primaryColor: [36m[Function: get][39m,
|
|
1802
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1803
|
+
}
|
|
1804
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1805
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1806
|
+
[useContext] Signal value: {
|
|
1807
|
+
user: [36m[Function: get][39m,
|
|
1808
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1809
|
+
login: [36m[Function: login][39m,
|
|
1810
|
+
logout: [36m[Function: logout][39m
|
|
1811
|
+
}
|
|
1812
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1813
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1814
|
+
[useContext] Signal value: {
|
|
1815
|
+
fontSize: [36m[Function: get][39m,
|
|
1816
|
+
setFontSize: [36m[Function: set][39m,
|
|
1817
|
+
notifications: [36m[Function: get][39m,
|
|
1818
|
+
setNotifications: [36m[Function: set][39m,
|
|
1819
|
+
language: [36m[Function: get][39m,
|
|
1820
|
+
setLanguage: [36m[Function: set][39m,
|
|
1821
|
+
animations: [36m[Function: get][39m,
|
|
1822
|
+
setAnimations: [36m[Function: set][39m
|
|
1823
|
+
}
|
|
1824
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1825
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1826
|
+
[useContext] Signal value: {
|
|
1827
|
+
theme: [36m[Function: get][39m,
|
|
1828
|
+
setTheme: [36m[Function: set][39m,
|
|
1829
|
+
primaryColor: [36m[Function: get][39m,
|
|
1830
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1831
|
+
}
|
|
1832
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1833
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1834
|
+
[useContext] Signal value: {
|
|
1835
|
+
theme: [36m[Function: get][39m,
|
|
1836
|
+
setTheme: [36m[Function: set][39m,
|
|
1837
|
+
primaryColor: [36m[Function: get][39m,
|
|
1838
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1839
|
+
}
|
|
1840
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1841
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1842
|
+
[useContext] Signal value: {
|
|
1843
|
+
theme: [36m[Function: get][39m,
|
|
1844
|
+
setTheme: [36m[Function: set][39m,
|
|
1845
|
+
primaryColor: [36m[Function: get][39m,
|
|
1846
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1847
|
+
}
|
|
1848
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1849
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1850
|
+
[useContext] Signal value: {
|
|
1851
|
+
user: [36m[Function: get][39m,
|
|
1852
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1853
|
+
login: [36m[Function: login][39m,
|
|
1854
|
+
logout: [36m[Function: logout][39m
|
|
1855
|
+
}
|
|
1856
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1857
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1858
|
+
[useContext] Signal value: {
|
|
1859
|
+
user: [36m[Function: get][39m,
|
|
1860
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1861
|
+
login: [36m[Function: login][39m,
|
|
1862
|
+
logout: [36m[Function: logout][39m
|
|
1863
|
+
}
|
|
1864
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1865
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1866
|
+
[useContext] Signal value: {
|
|
1867
|
+
fontSize: [36m[Function: get][39m,
|
|
1868
|
+
setFontSize: [36m[Function: set][39m,
|
|
1869
|
+
notifications: [36m[Function: get][39m,
|
|
1870
|
+
setNotifications: [36m[Function: set][39m,
|
|
1871
|
+
language: [36m[Function: get][39m,
|
|
1872
|
+
setLanguage: [36m[Function: set][39m,
|
|
1873
|
+
animations: [36m[Function: get][39m,
|
|
1874
|
+
setAnimations: [36m[Function: set][39m
|
|
1875
|
+
}
|
|
1876
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1877
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1878
|
+
[useContext] Signal value: {
|
|
1879
|
+
theme: [36m[Function: get][39m,
|
|
1880
|
+
setTheme: [36m[Function: set][39m,
|
|
1881
|
+
primaryColor: [36m[Function: get][39m,
|
|
1882
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1883
|
+
}
|
|
1884
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1885
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1886
|
+
[useContext] Signal value: {
|
|
1887
|
+
user: [36m[Function: get][39m,
|
|
1888
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1889
|
+
login: [36m[Function: login][39m,
|
|
1890
|
+
logout: [36m[Function: logout][39m
|
|
1891
|
+
}
|
|
1892
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1893
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1894
|
+
[useContext] Signal value: {
|
|
1895
|
+
fontSize: [36m[Function: get][39m,
|
|
1896
|
+
setFontSize: [36m[Function: set][39m,
|
|
1897
|
+
notifications: [36m[Function: get][39m,
|
|
1898
|
+
setNotifications: [36m[Function: set][39m,
|
|
1899
|
+
language: [36m[Function: get][39m,
|
|
1900
|
+
setLanguage: [36m[Function: set][39m,
|
|
1901
|
+
animations: [36m[Function: get][39m,
|
|
1902
|
+
setAnimations: [36m[Function: set][39m
|
|
1903
|
+
}
|
|
1904
|
+
[REGISTRY.execute] RESULT: component:ContextTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1905
|
+
|
|
1906
|
+
[90mstdout[2m | src/showcase/pages/__tests__/resource-test.test.ts[2m > [22m[2mResourceTestPage[2m > [22m[2mRefresh Functionality[2m > [22m[2mshould increment refresh count
|
|
1907
|
+
[22m[39m[REGISTRY.execute] START: component:ResourceTestPage parentId: [1mnull[22m
|
|
1908
|
+
[REGISTRY.execute] RESULT: component:ResourceTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1909
|
+
|
|
1910
|
+
[31mΓ¥»[39m src/showcase/pages/__tests__/resource-test.test.ts [2m([22m[2m12 tests[22m[2m | [22m[31m1 failed[39m[2m)[22m[32m 155[2mms[22m[39m
|
|
1911
|
+
[31m [31m×[31m should show loading state initially[39m[32m 50[2mms[22m[39m
|
|
1912
|
+
[32mΓ£ô[39m should display user data after loading[32m 7[2mms[22m[39m
|
|
1913
|
+
[32mΓ£ô[39m should refetch when Next User clicked[32m 8[2mms[22m[39m
|
|
1914
|
+
[32mΓ£ô[39m should cycle back to user 1 after user 10[32m 10[2mms[22m[39m
|
|
1915
|
+
[32mΓ£ô[39m should load posts after user loads[32m 10[2mms[22m[39m
|
|
1916
|
+
[32mΓ£ô[39m should refetch posts when user changes[32m 9[2mms[22m[39m
|
|
1917
|
+
[32mΓ£ô[39m should show hint for short queries[32m 13[2mms[22m[39m
|
|
1918
|
+
[32mΓ£ô[39m should trigger search for valid queries[32m 8[2mms[22m[39m
|
|
1919
|
+
[32mΓ£ô[39m should display search results[32m 14[2mms[22m[39m
|
|
1920
|
+
[32mΓ£ô[39m should show error for "error" query[32m 5[2mms[22m[39m
|
|
1921
|
+
[32mΓ£ô[39m should display in stock status[32m 9[2mms[22m[39m
|
|
1922
|
+
[32mΓ£ô[39m should increment refresh count[32m 10[2mms[22m[39m
|
|
1923
|
+
[90mstdout[2m | src/showcase/pages/__tests__/error-boundary-test.test.ts[2m > [22m[2mErrorBoundaryTestPage[2m > [22m[2mNested Boundaries[2m > [22m[2mshould render healthy state initially
|
|
1924
|
+
[22m[39m[REGISTRY.execute] START: component:ErrorBoundaryTestPage parentId: [1mnull[22m
|
|
1925
|
+
[REGISTRY.execute] RESULT: component:ErrorBoundaryTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
1926
|
+
|
|
1927
|
+
[90mstdout[2m | src/showcase/pages/__tests__/context-test.test.ts[2m > [22m[2mContextTestPage[2m > [22m[2mSettings Context[2m > [22m[2mshould adjust font size with slider
|
|
1928
|
+
[22m[39m[REGISTRY.execute] START: component:ContextTestPage parentId: [1mnull[22m
|
|
1929
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1930
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1931
|
+
[useContext] Signal value: {
|
|
1932
|
+
theme: [36m[Function: get][39m,
|
|
1933
|
+
setTheme: [36m[Function: set][39m,
|
|
1934
|
+
primaryColor: [36m[Function: get][39m,
|
|
1935
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1936
|
+
}
|
|
1937
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1938
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1939
|
+
[useContext] Signal value: {
|
|
1940
|
+
user: [36m[Function: get][39m,
|
|
1941
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1942
|
+
login: [36m[Function: login][39m,
|
|
1943
|
+
logout: [36m[Function: logout][39m
|
|
1944
|
+
}
|
|
1945
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1946
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1947
|
+
[useContext] Signal value: {
|
|
1948
|
+
fontSize: [36m[Function: get][39m,
|
|
1949
|
+
setFontSize: [36m[Function: set][39m,
|
|
1950
|
+
notifications: [36m[Function: get][39m,
|
|
1951
|
+
setNotifications: [36m[Function: set][39m,
|
|
1952
|
+
language: [36m[Function: get][39m,
|
|
1953
|
+
setLanguage: [36m[Function: set][39m,
|
|
1954
|
+
animations: [36m[Function: get][39m,
|
|
1955
|
+
setAnimations: [36m[Function: set][39m
|
|
1956
|
+
}
|
|
1957
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1958
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1959
|
+
[useContext] Signal value: {
|
|
1960
|
+
theme: [36m[Function: get][39m,
|
|
1961
|
+
setTheme: [36m[Function: set][39m,
|
|
1962
|
+
primaryColor: [36m[Function: get][39m,
|
|
1963
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1964
|
+
}
|
|
1965
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1966
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1967
|
+
[useContext] Signal value: {
|
|
1968
|
+
theme: [36m[Function: get][39m,
|
|
1969
|
+
setTheme: [36m[Function: set][39m,
|
|
1970
|
+
primaryColor: [36m[Function: get][39m,
|
|
1971
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1972
|
+
}
|
|
1973
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1974
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1975
|
+
[useContext] Signal value: {
|
|
1976
|
+
theme: [36m[Function: get][39m,
|
|
1977
|
+
setTheme: [36m[Function: set][39m,
|
|
1978
|
+
primaryColor: [36m[Function: get][39m,
|
|
1979
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
1980
|
+
}
|
|
1981
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1982
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1983
|
+
[useContext] Signal value: {
|
|
1984
|
+
user: [36m[Function: get][39m,
|
|
1985
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1986
|
+
login: [36m[Function: login][39m,
|
|
1987
|
+
logout: [36m[Function: logout][39m
|
|
1988
|
+
}
|
|
1989
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1990
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1991
|
+
[useContext] Signal value: {
|
|
1992
|
+
user: [36m[Function: get][39m,
|
|
1993
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
1994
|
+
login: [36m[Function: login][39m,
|
|
1995
|
+
logout: [36m[Function: logout][39m
|
|
1996
|
+
}
|
|
1997
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
1998
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
1999
|
+
[useContext] Signal value: {
|
|
2000
|
+
fontSize: [36m[Function: get][39m,
|
|
2001
|
+
setFontSize: [36m[Function: set][39m,
|
|
2002
|
+
notifications: [36m[Function: get][39m,
|
|
2003
|
+
setNotifications: [36m[Function: set][39m,
|
|
2004
|
+
language: [36m[Function: get][39m,
|
|
2005
|
+
setLanguage: [36m[Function: set][39m,
|
|
2006
|
+
animations: [36m[Function: get][39m,
|
|
2007
|
+
setAnimations: [36m[Function: set][39m
|
|
2008
|
+
}
|
|
2009
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2010
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2011
|
+
[useContext] Signal value: {
|
|
2012
|
+
theme: [36m[Function: get][39m,
|
|
2013
|
+
setTheme: [36m[Function: set][39m,
|
|
2014
|
+
primaryColor: [36m[Function: get][39m,
|
|
2015
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
2016
|
+
}
|
|
2017
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2018
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2019
|
+
[useContext] Signal value: {
|
|
2020
|
+
user: [36m[Function: get][39m,
|
|
2021
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
2022
|
+
login: [36m[Function: login][39m,
|
|
2023
|
+
logout: [36m[Function: logout][39m
|
|
2024
|
+
}
|
|
2025
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2026
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2027
|
+
[useContext] Signal value: {
|
|
2028
|
+
fontSize: [36m[Function: get][39m,
|
|
2029
|
+
setFontSize: [36m[Function: set][39m,
|
|
2030
|
+
notifications: [36m[Function: get][39m,
|
|
2031
|
+
setNotifications: [36m[Function: set][39m,
|
|
2032
|
+
language: [36m[Function: get][39m,
|
|
2033
|
+
setLanguage: [36m[Function: set][39m,
|
|
2034
|
+
animations: [36m[Function: get][39m,
|
|
2035
|
+
setAnimations: [36m[Function: set][39m
|
|
2036
|
+
}
|
|
2037
|
+
[REGISTRY.execute] RESULT: component:ContextTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
2038
|
+
|
|
2039
|
+
[90mstdout[2m | src/showcase/pages/__tests__/error-boundary-test.test.ts[2m > [22m[2mErrorBoundaryTestPage[2m > [22m[2mNested Boundaries[2m > [22m[2mshould catch inner error with inner boundary
|
|
2040
|
+
[22m[39m[REGISTRY.execute] START: component:ErrorBoundaryTestPage parentId: [1mnull[22m
|
|
2041
|
+
[REGISTRY.execute] RESULT: component:ErrorBoundaryTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
2042
|
+
|
|
2043
|
+
[90mstdout[2m | src/showcase/pages/__tests__/context-test.test.ts[2m > [22m[2mContextTestPage[2m > [22m[2mSettings Context[2m > [22m[2mshould toggle notifications
|
|
2044
|
+
[22m[39m[REGISTRY.execute] START: component:ContextTestPage parentId: [1mnull[22m
|
|
2045
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2046
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2047
|
+
[useContext] Signal value: {
|
|
2048
|
+
theme: [36m[Function: get][39m,
|
|
2049
|
+
setTheme: [36m[Function: set][39m,
|
|
2050
|
+
primaryColor: [36m[Function: get][39m,
|
|
2051
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
2052
|
+
}
|
|
2053
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2054
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2055
|
+
[useContext] Signal value: {
|
|
2056
|
+
user: [36m[Function: get][39m,
|
|
2057
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
2058
|
+
login: [36m[Function: login][39m,
|
|
2059
|
+
logout: [36m[Function: logout][39m
|
|
2060
|
+
}
|
|
2061
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2062
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2063
|
+
[useContext] Signal value: {
|
|
2064
|
+
fontSize: [36m[Function: get][39m,
|
|
2065
|
+
setFontSize: [36m[Function: set][39m,
|
|
2066
|
+
notifications: [36m[Function: get][39m,
|
|
2067
|
+
setNotifications: [36m[Function: set][39m,
|
|
2068
|
+
language: [36m[Function: get][39m,
|
|
2069
|
+
setLanguage: [36m[Function: set][39m,
|
|
2070
|
+
animations: [36m[Function: get][39m,
|
|
2071
|
+
setAnimations: [36m[Function: set][39m
|
|
2072
|
+
}
|
|
2073
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2074
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2075
|
+
[useContext] Signal value: {
|
|
2076
|
+
theme: [36m[Function: get][39m,
|
|
2077
|
+
setTheme: [36m[Function: set][39m,
|
|
2078
|
+
primaryColor: [36m[Function: get][39m,
|
|
2079
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
2080
|
+
}
|
|
2081
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2082
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2083
|
+
[useContext] Signal value: {
|
|
2084
|
+
theme: [36m[Function: get][39m,
|
|
2085
|
+
setTheme: [36m[Function: set][39m,
|
|
2086
|
+
primaryColor: [36m[Function: get][39m,
|
|
2087
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
2088
|
+
}
|
|
2089
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2090
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2091
|
+
[useContext] Signal value: {
|
|
2092
|
+
theme: [36m[Function: get][39m,
|
|
2093
|
+
setTheme: [36m[Function: set][39m,
|
|
2094
|
+
primaryColor: [36m[Function: get][39m,
|
|
2095
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
2096
|
+
}
|
|
2097
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2098
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2099
|
+
[useContext] Signal value: {
|
|
2100
|
+
user: [36m[Function: get][39m,
|
|
2101
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
2102
|
+
login: [36m[Function: login][39m,
|
|
2103
|
+
logout: [36m[Function: logout][39m
|
|
2104
|
+
}
|
|
2105
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2106
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2107
|
+
[useContext] Signal value: {
|
|
2108
|
+
user: [36m[Function: get][39m,
|
|
2109
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
2110
|
+
login: [36m[Function: login][39m,
|
|
2111
|
+
logout: [36m[Function: logout][39m
|
|
2112
|
+
}
|
|
2113
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2114
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2115
|
+
[useContext] Signal value: {
|
|
2116
|
+
fontSize: [36m[Function: get][39m,
|
|
2117
|
+
setFontSize: [36m[Function: set][39m,
|
|
2118
|
+
notifications: [36m[Function: get][39m,
|
|
2119
|
+
setNotifications: [36m[Function: set][39m,
|
|
2120
|
+
language: [36m[Function: get][39m,
|
|
2121
|
+
setLanguage: [36m[Function: set][39m,
|
|
2122
|
+
animations: [36m[Function: get][39m,
|
|
2123
|
+
setAnimations: [36m[Function: set][39m
|
|
2124
|
+
}
|
|
2125
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2126
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2127
|
+
[useContext] Signal value: {
|
|
2128
|
+
theme: [36m[Function: get][39m,
|
|
2129
|
+
setTheme: [36m[Function: set][39m,
|
|
2130
|
+
primaryColor: [36m[Function: get][39m,
|
|
2131
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
2132
|
+
}
|
|
2133
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2134
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2135
|
+
[useContext] Signal value: {
|
|
2136
|
+
user: [36m[Function: get][39m,
|
|
2137
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
2138
|
+
login: [36m[Function: login][39m,
|
|
2139
|
+
logout: [36m[Function: logout][39m
|
|
2140
|
+
}
|
|
2141
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2142
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2143
|
+
[useContext] Signal value: {
|
|
2144
|
+
fontSize: [36m[Function: get][39m,
|
|
2145
|
+
setFontSize: [36m[Function: set][39m,
|
|
2146
|
+
notifications: [36m[Function: get][39m,
|
|
2147
|
+
setNotifications: [36m[Function: set][39m,
|
|
2148
|
+
language: [36m[Function: get][39m,
|
|
2149
|
+
setLanguage: [36m[Function: set][39m,
|
|
2150
|
+
animations: [36m[Function: get][39m,
|
|
2151
|
+
setAnimations: [36m[Function: set][39m
|
|
2152
|
+
}
|
|
2153
|
+
[REGISTRY.execute] RESULT: component:ContextTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
2154
|
+
|
|
2155
|
+
[90mstdout[2m | src/showcase/pages/__tests__/error-boundary-test.test.ts[2m > [22m[2mErrorBoundaryTestPage[2m > [22m[2mNested Boundaries[2m > [22m[2mshould catch outer error with outer boundary
|
|
2156
|
+
[22m[39m[REGISTRY.execute] START: component:ErrorBoundaryTestPage parentId: [1mnull[22m
|
|
2157
|
+
[REGISTRY.execute] RESULT: component:ErrorBoundaryTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
2158
|
+
|
|
2159
|
+
[90mstdout[2m | src/showcase/pages/__tests__/context-test.test.ts[2m > [22m[2mContextTestPage[2m > [22m[2mSettings Context[2m > [22m[2mshould change language
|
|
2160
|
+
[22m[39m[REGISTRY.execute] START: component:ContextTestPage parentId: [1mnull[22m
|
|
2161
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2162
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2163
|
+
[useContext] Signal value: {
|
|
2164
|
+
theme: [36m[Function: get][39m,
|
|
2165
|
+
setTheme: [36m[Function: set][39m,
|
|
2166
|
+
primaryColor: [36m[Function: get][39m,
|
|
2167
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
2168
|
+
}
|
|
2169
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2170
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2171
|
+
[useContext] Signal value: {
|
|
2172
|
+
user: [36m[Function: get][39m,
|
|
2173
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
2174
|
+
login: [36m[Function: login][39m,
|
|
2175
|
+
logout: [36m[Function: logout][39m
|
|
2176
|
+
}
|
|
2177
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2178
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2179
|
+
[useContext] Signal value: {
|
|
2180
|
+
fontSize: [36m[Function: get][39m,
|
|
2181
|
+
setFontSize: [36m[Function: set][39m,
|
|
2182
|
+
notifications: [36m[Function: get][39m,
|
|
2183
|
+
setNotifications: [36m[Function: set][39m,
|
|
2184
|
+
language: [36m[Function: get][39m,
|
|
2185
|
+
setLanguage: [36m[Function: set][39m,
|
|
2186
|
+
animations: [36m[Function: get][39m,
|
|
2187
|
+
setAnimations: [36m[Function: set][39m
|
|
2188
|
+
}
|
|
2189
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2190
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2191
|
+
[useContext] Signal value: {
|
|
2192
|
+
theme: [36m[Function: get][39m,
|
|
2193
|
+
setTheme: [36m[Function: set][39m,
|
|
2194
|
+
primaryColor: [36m[Function: get][39m,
|
|
2195
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
2196
|
+
}
|
|
2197
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2198
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2199
|
+
[useContext] Signal value: {
|
|
2200
|
+
theme: [36m[Function: get][39m,
|
|
2201
|
+
setTheme: [36m[Function: set][39m,
|
|
2202
|
+
primaryColor: [36m[Function: get][39m,
|
|
2203
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
2204
|
+
}
|
|
2205
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2206
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2207
|
+
[useContext] Signal value: {
|
|
2208
|
+
theme: [36m[Function: get][39m,
|
|
2209
|
+
setTheme: [36m[Function: set][39m,
|
|
2210
|
+
primaryColor: [36m[Function: get][39m,
|
|
2211
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
2212
|
+
}
|
|
2213
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2214
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2215
|
+
[useContext] Signal value: {
|
|
2216
|
+
user: [36m[Function: get][39m,
|
|
2217
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
2218
|
+
login: [36m[Function: login][39m,
|
|
2219
|
+
logout: [36m[Function: logout][39m
|
|
2220
|
+
}
|
|
2221
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2222
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2223
|
+
[useContext] Signal value: {
|
|
2224
|
+
user: [36m[Function: get][39m,
|
|
2225
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
2226
|
+
login: [36m[Function: login][39m,
|
|
2227
|
+
logout: [36m[Function: logout][39m
|
|
2228
|
+
}
|
|
2229
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2230
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2231
|
+
[useContext] Signal value: {
|
|
2232
|
+
fontSize: [36m[Function: get][39m,
|
|
2233
|
+
setFontSize: [36m[Function: set][39m,
|
|
2234
|
+
notifications: [36m[Function: get][39m,
|
|
2235
|
+
setNotifications: [36m[Function: set][39m,
|
|
2236
|
+
language: [36m[Function: get][39m,
|
|
2237
|
+
setLanguage: [36m[Function: set][39m,
|
|
2238
|
+
animations: [36m[Function: get][39m,
|
|
2239
|
+
setAnimations: [36m[Function: set][39m
|
|
2240
|
+
}
|
|
2241
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2242
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2243
|
+
[useContext] Signal value: {
|
|
2244
|
+
theme: [36m[Function: get][39m,
|
|
2245
|
+
setTheme: [36m[Function: set][39m,
|
|
2246
|
+
primaryColor: [36m[Function: get][39m,
|
|
2247
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
2248
|
+
}
|
|
2249
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2250
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2251
|
+
[useContext] Signal value: {
|
|
2252
|
+
user: [36m[Function: get][39m,
|
|
2253
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
2254
|
+
login: [36m[Function: login][39m,
|
|
2255
|
+
logout: [36m[Function: logout][39m
|
|
2256
|
+
}
|
|
2257
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2258
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2259
|
+
[useContext] Signal value: {
|
|
2260
|
+
fontSize: [36m[Function: get][39m,
|
|
2261
|
+
setFontSize: [36m[Function: set][39m,
|
|
2262
|
+
notifications: [36m[Function: get][39m,
|
|
2263
|
+
setNotifications: [36m[Function: set][39m,
|
|
2264
|
+
language: [36m[Function: get][39m,
|
|
2265
|
+
setLanguage: [36m[Function: set][39m,
|
|
2266
|
+
animations: [36m[Function: get][39m,
|
|
2267
|
+
setAnimations: [36m[Function: set][39m
|
|
2268
|
+
}
|
|
2269
|
+
[REGISTRY.execute] RESULT: component:ContextTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
2270
|
+
|
|
2271
|
+
[90mstdout[2m | src/showcase/pages/__tests__/error-boundary-test.test.ts[2m > [22m[2mErrorBoundaryTestPage[2m > [22m[2mError Recovery Pattern[2m > [22m[2mshould fail on first attempt
|
|
2272
|
+
[22m[39m[REGISTRY.execute] START: component:ErrorBoundaryTestPage parentId: [1mnull[22m
|
|
2273
|
+
[REGISTRY.execute] RESULT: component:ErrorBoundaryTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
2274
|
+
|
|
2275
|
+
[90mstdout[2m | src/showcase/pages/__tests__/context-test.test.ts[2m > [22m[2mContextTestPage[2m > [22m[2mDeeply Nested Access[2m > [22m[2mshould access all contexts from nested component
|
|
2276
|
+
[22m[39m[REGISTRY.execute] START: component:ContextTestPage parentId: [1mnull[22m
|
|
2277
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2278
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2279
|
+
[useContext] Signal value: {
|
|
2280
|
+
theme: [36m[Function: get][39m,
|
|
2281
|
+
setTheme: [36m[Function: set][39m,
|
|
2282
|
+
primaryColor: [36m[Function: get][39m,
|
|
2283
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
2284
|
+
}
|
|
2285
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2286
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2287
|
+
[useContext] Signal value: {
|
|
2288
|
+
user: [36m[Function: get][39m,
|
|
2289
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
2290
|
+
login: [36m[Function: login][39m,
|
|
2291
|
+
logout: [36m[Function: logout][39m
|
|
2292
|
+
}
|
|
2293
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2294
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2295
|
+
[useContext] Signal value: {
|
|
2296
|
+
fontSize: [36m[Function: get][39m,
|
|
2297
|
+
setFontSize: [36m[Function: set][39m,
|
|
2298
|
+
notifications: [36m[Function: get][39m,
|
|
2299
|
+
setNotifications: [36m[Function: set][39m,
|
|
2300
|
+
language: [36m[Function: get][39m,
|
|
2301
|
+
setLanguage: [36m[Function: set][39m,
|
|
2302
|
+
animations: [36m[Function: get][39m,
|
|
2303
|
+
setAnimations: [36m[Function: set][39m
|
|
2304
|
+
}
|
|
2305
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2306
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2307
|
+
[useContext] Signal value: {
|
|
2308
|
+
theme: [36m[Function: get][39m,
|
|
2309
|
+
setTheme: [36m[Function: set][39m,
|
|
2310
|
+
primaryColor: [36m[Function: get][39m,
|
|
2311
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
2312
|
+
}
|
|
2313
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2314
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2315
|
+
[useContext] Signal value: {
|
|
2316
|
+
theme: [36m[Function: get][39m,
|
|
2317
|
+
setTheme: [36m[Function: set][39m,
|
|
2318
|
+
primaryColor: [36m[Function: get][39m,
|
|
2319
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
2320
|
+
}
|
|
2321
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2322
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2323
|
+
[useContext] Signal value: {
|
|
2324
|
+
theme: [36m[Function: get][39m,
|
|
2325
|
+
setTheme: [36m[Function: set][39m,
|
|
2326
|
+
primaryColor: [36m[Function: get][39m,
|
|
2327
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
2328
|
+
}
|
|
2329
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2330
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2331
|
+
[useContext] Signal value: {
|
|
2332
|
+
user: [36m[Function: get][39m,
|
|
2333
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
2334
|
+
login: [36m[Function: login][39m,
|
|
2335
|
+
logout: [36m[Function: logout][39m
|
|
2336
|
+
}
|
|
2337
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2338
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2339
|
+
[useContext] Signal value: {
|
|
2340
|
+
user: [36m[Function: get][39m,
|
|
2341
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
2342
|
+
login: [36m[Function: login][39m,
|
|
2343
|
+
logout: [36m[Function: logout][39m
|
|
2344
|
+
}
|
|
2345
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2346
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2347
|
+
[useContext] Signal value: {
|
|
2348
|
+
fontSize: [36m[Function: get][39m,
|
|
2349
|
+
setFontSize: [36m[Function: set][39m,
|
|
2350
|
+
notifications: [36m[Function: get][39m,
|
|
2351
|
+
setNotifications: [36m[Function: set][39m,
|
|
2352
|
+
language: [36m[Function: get][39m,
|
|
2353
|
+
setLanguage: [36m[Function: set][39m,
|
|
2354
|
+
animations: [36m[Function: get][39m,
|
|
2355
|
+
setAnimations: [36m[Function: set][39m
|
|
2356
|
+
}
|
|
2357
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2358
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2359
|
+
[useContext] Signal value: {
|
|
2360
|
+
theme: [36m[Function: get][39m,
|
|
2361
|
+
setTheme: [36m[Function: set][39m,
|
|
2362
|
+
primaryColor: [36m[Function: get][39m,
|
|
2363
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
2364
|
+
}
|
|
2365
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2366
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2367
|
+
[useContext] Signal value: {
|
|
2368
|
+
user: [36m[Function: get][39m,
|
|
2369
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
2370
|
+
login: [36m[Function: login][39m,
|
|
2371
|
+
logout: [36m[Function: logout][39m
|
|
2372
|
+
}
|
|
2373
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2374
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2375
|
+
[useContext] Signal value: {
|
|
2376
|
+
fontSize: [36m[Function: get][39m,
|
|
2377
|
+
setFontSize: [36m[Function: set][39m,
|
|
2378
|
+
notifications: [36m[Function: get][39m,
|
|
2379
|
+
setNotifications: [36m[Function: set][39m,
|
|
2380
|
+
language: [36m[Function: get][39m,
|
|
2381
|
+
setLanguage: [36m[Function: set][39m,
|
|
2382
|
+
animations: [36m[Function: get][39m,
|
|
2383
|
+
setAnimations: [36m[Function: set][39m
|
|
2384
|
+
}
|
|
2385
|
+
[REGISTRY.execute] RESULT: component:ContextTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
2386
|
+
|
|
2387
|
+
[90mstdout[2m | src/showcase/pages/__tests__/error-boundary-test.test.ts[2m > [22m[2mErrorBoundaryTestPage[2m > [22m[2mError Recovery Pattern[2m > [22m[2mshould track retry attempts
|
|
2388
|
+
[22m[39m[REGISTRY.execute] START: component:ErrorBoundaryTestPage parentId: [1mnull[22m
|
|
2389
|
+
[REGISTRY.execute] RESULT: component:ErrorBoundaryTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
2390
|
+
|
|
2391
|
+
[90mstdout[2m | src/showcase/pages/__tests__/context-test.test.ts[2m > [22m[2mContextTestPage[2m > [22m[2mDeeply Nested Access[2m > [22m[2mshould display context values in nested component
|
|
2392
|
+
[22m[39m[REGISTRY.execute] START: component:ContextTestPage parentId: [1mnull[22m
|
|
2393
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2394
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2395
|
+
[useContext] Signal value: {
|
|
2396
|
+
theme: [36m[Function: get][39m,
|
|
2397
|
+
setTheme: [36m[Function: set][39m,
|
|
2398
|
+
primaryColor: [36m[Function: get][39m,
|
|
2399
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
2400
|
+
}
|
|
2401
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2402
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2403
|
+
[useContext] Signal value: {
|
|
2404
|
+
user: [36m[Function: get][39m,
|
|
2405
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
2406
|
+
login: [36m[Function: login][39m,
|
|
2407
|
+
logout: [36m[Function: logout][39m
|
|
2408
|
+
}
|
|
2409
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2410
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2411
|
+
[useContext] Signal value: {
|
|
2412
|
+
fontSize: [36m[Function: get][39m,
|
|
2413
|
+
setFontSize: [36m[Function: set][39m,
|
|
2414
|
+
notifications: [36m[Function: get][39m,
|
|
2415
|
+
setNotifications: [36m[Function: set][39m,
|
|
2416
|
+
language: [36m[Function: get][39m,
|
|
2417
|
+
setLanguage: [36m[Function: set][39m,
|
|
2418
|
+
animations: [36m[Function: get][39m,
|
|
2419
|
+
setAnimations: [36m[Function: set][39m
|
|
2420
|
+
}
|
|
2421
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2422
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2423
|
+
[useContext] Signal value: {
|
|
2424
|
+
theme: [36m[Function: get][39m,
|
|
2425
|
+
setTheme: [36m[Function: set][39m,
|
|
2426
|
+
primaryColor: [36m[Function: get][39m,
|
|
2427
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
2428
|
+
}
|
|
2429
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2430
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2431
|
+
[useContext] Signal value: {
|
|
2432
|
+
theme: [36m[Function: get][39m,
|
|
2433
|
+
setTheme: [36m[Function: set][39m,
|
|
2434
|
+
primaryColor: [36m[Function: get][39m,
|
|
2435
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
2436
|
+
}
|
|
2437
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2438
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2439
|
+
[useContext] Signal value: {
|
|
2440
|
+
theme: [36m[Function: get][39m,
|
|
2441
|
+
setTheme: [36m[Function: set][39m,
|
|
2442
|
+
primaryColor: [36m[Function: get][39m,
|
|
2443
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
2444
|
+
}
|
|
2445
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2446
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2447
|
+
[useContext] Signal value: {
|
|
2448
|
+
user: [36m[Function: get][39m,
|
|
2449
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
2450
|
+
login: [36m[Function: login][39m,
|
|
2451
|
+
logout: [36m[Function: logout][39m
|
|
2452
|
+
}
|
|
2453
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2454
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2455
|
+
[useContext] Signal value: {
|
|
2456
|
+
user: [36m[Function: get][39m,
|
|
2457
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
2458
|
+
login: [36m[Function: login][39m,
|
|
2459
|
+
logout: [36m[Function: logout][39m
|
|
2460
|
+
}
|
|
2461
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2462
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2463
|
+
[useContext] Signal value: {
|
|
2464
|
+
fontSize: [36m[Function: get][39m,
|
|
2465
|
+
setFontSize: [36m[Function: set][39m,
|
|
2466
|
+
notifications: [36m[Function: get][39m,
|
|
2467
|
+
setNotifications: [36m[Function: set][39m,
|
|
2468
|
+
language: [36m[Function: get][39m,
|
|
2469
|
+
setLanguage: [36m[Function: set][39m,
|
|
2470
|
+
animations: [36m[Function: get][39m,
|
|
2471
|
+
setAnimations: [36m[Function: set][39m
|
|
2472
|
+
}
|
|
2473
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2474
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2475
|
+
[useContext] Signal value: {
|
|
2476
|
+
theme: [36m[Function: get][39m,
|
|
2477
|
+
setTheme: [36m[Function: set][39m,
|
|
2478
|
+
primaryColor: [36m[Function: get][39m,
|
|
2479
|
+
setPrimaryColor: [36m[Function: set][39m
|
|
2480
|
+
}
|
|
2481
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2482
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2483
|
+
[useContext] Signal value: {
|
|
2484
|
+
user: [36m[Function: get][39m,
|
|
2485
|
+
isLoggedIn: [36m[Function: get][39m,
|
|
2486
|
+
login: [36m[Function: login][39m,
|
|
2487
|
+
logout: [36m[Function: logout][39m
|
|
2488
|
+
}
|
|
2489
|
+
[useContext] Looking up context: [32mSymbol(Context)[39m
|
|
2490
|
+
[useContext] Found signal: [ [36m[Function: get][39m, [36m[Function: set][39m ]
|
|
2491
|
+
[useContext] Signal value: {
|
|
2492
|
+
fontSize: [36m[Function: get][39m,
|
|
2493
|
+
setFontSize: [36m[Function: set][39m,
|
|
2494
|
+
notifications: [36m[Function: get][39m,
|
|
2495
|
+
setNotifications: [36m[Function: set][39m,
|
|
2496
|
+
language: [36m[Function: get][39m,
|
|
2497
|
+
setLanguage: [36m[Function: set][39m,
|
|
2498
|
+
animations: [36m[Function: get][39m,
|
|
2499
|
+
setAnimations: [36m[Function: set][39m
|
|
2500
|
+
}
|
|
2501
|
+
[REGISTRY.execute] RESULT: component:ContextTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
2502
|
+
|
|
2503
|
+
[90mstdout[2m | src/showcase/pages/__tests__/error-boundary-test.test.ts[2m > [22m[2mErrorBoundaryTestPage[2m > [22m[2mError Recovery Pattern[2m > [22m[2mshould succeed after 3 attempts
|
|
2504
|
+
[22m[39m[REGISTRY.execute] START: component:ErrorBoundaryTestPage parentId: [1mnull[22m
|
|
2505
|
+
[REGISTRY.execute] RESULT: component:ErrorBoundaryTestPage result: HTMLDivElement {} instanceof HTMLElement: [33mtrue[39m
|
|
2506
|
+
|
|
2507
|
+
[32mΓ£ô[39m src/showcase/pages/__tests__/context-test.test.ts [2m([22m[2m14 tests[22m[2m)[22m[32m 192[2mms[22m[39m
|
|
2508
|
+
[32mΓ£ô[39m src/showcase/pages/__tests__/error-boundary-test.test.ts [2m([22m[2m12 tests[22m[2m)[22m[32m 193[2mms[22m[39m
|
|
2509
|
+
|
|
2510
|
+
⎯⎯⎯⎯⎯⎯ Failed Tests 12 ⎯⎯⎯⎯⎯⎯⎯
|
|
2511
|
+
|
|
2512
|
+
FAIL src/showcase/pages/__tests__/home.test.ts > HomePage > Rendering > should render Counter component
|
|
2513
|
+
AssertionError: expected null to be truthy
|
|
2514
|
+
|
|
2515
|
+
- Expected:
|
|
2516
|
+
true
|
|
2517
|
+
|
|
2518
|
+
+ Received:
|
|
2519
|
+
null
|
|
2520
|
+
|
|
2521
|
+
Γ¥» src/showcase/pages/__tests__/home.test.ts:42:23
|
|
2522
|
+
40| // Counter should be present with its specific ID
|
|
2523
|
+
41| const counter = container.querySelector('[id*="counter"]');
|
|
2524
|
+
42| expect(counter).toBeTruthy();
|
|
2525
|
+
| ^
|
|
2526
|
+
43| });
|
|
2527
|
+
44| });
|
|
2528
|
+
|
|
2529
|
+
⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯[1/12]⎯
|
|
2530
|
+
|
|
2531
|
+
FAIL src/showcase/pages/__tests__/jsx-test.test.ts > JsxTestPage > Reactive Attributes > should render initial background color
|
|
2532
|
+
AssertionError: expected '' to be truthy
|
|
2533
|
+
|
|
2534
|
+
- Expected:
|
|
2535
|
+
true
|
|
2536
|
+
|
|
2537
|
+
+ Received:
|
|
2538
|
+
""
|
|
2539
|
+
|
|
2540
|
+
Γ¥» src/showcase/pages/__tests__/jsx-test.test.ts:25:42
|
|
2541
|
+
23| div.textContent?.includes('Background color:')
|
|
2542
|
+
24| );
|
|
2543
|
+
25| expect(colorDiv?.style.background).toBeTruthy();
|
|
2544
|
+
| ^
|
|
2545
|
+
26| });
|
|
2546
|
+
27|
|
|
2547
|
+
|
|
2548
|
+
⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯[2/12]⎯
|
|
2549
|
+
|
|
2550
|
+
FAIL src/showcase/pages/__tests__/resource-test.test.ts > ResourceTestPage > User Resource > should show loading state initially
|
|
2551
|
+
AssertionError: expected '🌊 Phase 3: Resource Management & Asy…' to contain 'Loading user'
|
|
2552
|
+
|
|
2553
|
+
Expected: "Loading user"
|
|
2554
|
+
Received: "🌊 Phase 3: Resource Management & Async Data 1️⃣ Basic Resource - User Profile createResource automatically manages loading, error, and success states for async data. ← Previous User Next User → 🔄 Refresh (Count: 0) 2️⃣ Dependent Resource - User Posts Resources can depend on other signals/resources. Posts automatically refetch when userId changes. 3️⃣ Search Resource - Product Search Resources update automatically when the source signal changes. Type "error" to trigger error state. ✓ Resource Management Summary createResource:Automatic async state management with isLoading, data, and errorShowRegistry:Conditional rendering based on resource statesDependent Resources:Manual refetch with createEffect tracking dependenciesrefetch():Manual refresh capabilitylazy:Opt-in loading with load() method"
|
|
2555
|
+
|
|
2556
|
+
Γ¥» src/showcase/pages/__tests__/resource-test.test.ts:27:37
|
|
2557
|
+
25| container.appendChild(page);
|
|
2558
|
+
26|
|
|
2559
|
+
27| expect(container.textContent).toContain('Loading user');
|
|
2560
|
+
| ^
|
|
2561
|
+
28| });
|
|
2562
|
+
29|
|
|
2563
|
+
|
|
2564
|
+
⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯[3/12]⎯
|
|
2565
|
+
|
|
2566
|
+
FAIL src/showcase/__tests__/integration/showcase-navigation.test.ts > Showcase Navigation Integration > Navigation Bar > should render all navigation buttons
|
|
2567
|
+
TypeError: (0 , __vite_ssr_import_1__.default) is not a function
|
|
2568
|
+
Γ¥» src/showcase/__tests__/integration/showcase-navigation.test.ts:21:19
|
|
2569
|
+
19| describe('Navigation Bar', () => {
|
|
2570
|
+
20| it('should render all navigation buttons', () => {
|
|
2571
|
+
21| const app = App();
|
|
2572
|
+
| ^
|
|
2573
|
+
22| container.appendChild(app);
|
|
2574
|
+
23|
|
|
2575
|
+
|
|
2576
|
+
⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯[4/12]⎯
|
|
2577
|
+
|
|
2578
|
+
FAIL src/showcase/__tests__/integration/showcase-navigation.test.ts > Showcase Navigation Integration > Navigation Bar > should have navigation buttons with proper styling
|
|
2579
|
+
TypeError: (0 , __vite_ssr_import_1__.default) is not a function
|
|
2580
|
+
Γ¥» src/showcase/__tests__/integration/showcase-navigation.test.ts:35:19
|
|
2581
|
+
33|
|
|
2582
|
+
34| it('should have navigation buttons with proper styling', () => {
|
|
2583
|
+
35| const app = App();
|
|
2584
|
+
| ^
|
|
2585
|
+
36| container.appendChild(app);
|
|
2586
|
+
37|
|
|
2587
|
+
|
|
2588
|
+
⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯[5/12]⎯
|
|
2589
|
+
|
|
2590
|
+
FAIL src/showcase/__tests__/integration/showcase-navigation.test.ts > Showcase Navigation Integration > Route Navigation > should display home page by default
|
|
2591
|
+
TypeError: (0 , __vite_ssr_import_1__.default) is not a function
|
|
2592
|
+
Γ¥» src/showcase/__tests__/integration/showcase-navigation.test.ts:45:19
|
|
2593
|
+
43| describe('Route Navigation', () => {
|
|
2594
|
+
44| it('should display home page by default', () => {
|
|
2595
|
+
45| const app = App();
|
|
2596
|
+
| ^
|
|
2597
|
+
46| container.appendChild(app);
|
|
2598
|
+
47|
|
|
2599
|
+
|
|
2600
|
+
⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯[6/12]⎯
|
|
2601
|
+
|
|
2602
|
+
FAIL src/showcase/__tests__/integration/showcase-navigation.test.ts > Showcase Navigation Integration > Route Navigation > should navigate to reactivity page
|
|
2603
|
+
TypeError: (0 , __vite_ssr_import_1__.default) is not a function
|
|
2604
|
+
Γ¥» src/showcase/__tests__/integration/showcase-navigation.test.ts:52:19
|
|
2605
|
+
50|
|
|
2606
|
+
51| it('should navigate to reactivity page', (done) => {
|
|
2607
|
+
52| const app = App();
|
|
2608
|
+
| ^
|
|
2609
|
+
53| container.appendChild(app);
|
|
2610
|
+
54|
|
|
2611
|
+
|
|
2612
|
+
⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯[7/12]⎯
|
|
2613
|
+
|
|
2614
|
+
FAIL src/showcase/__tests__/integration/showcase-navigation.test.ts > Showcase Navigation Integration > Route Navigation > should navigate to about page
|
|
2615
|
+
TypeError: (0 , __vite_ssr_import_1__.default) is not a function
|
|
2616
|
+
Γ¥» src/showcase/__tests__/integration/showcase-navigation.test.ts:68:19
|
|
2617
|
+
66|
|
|
2618
|
+
67| it('should navigate to about page', (done) => {
|
|
2619
|
+
68| const app = App();
|
|
2620
|
+
| ^
|
|
2621
|
+
69| container.appendChild(app);
|
|
2622
|
+
70|
|
|
2623
|
+
|
|
2624
|
+
⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯[8/12]⎯
|
|
2625
|
+
|
|
2626
|
+
FAIL src/showcase/__tests__/integration/showcase-navigation.test.ts > Showcase Navigation Integration > Route Navigation > should update currentPath signal on navigation
|
|
2627
|
+
TypeError: (0 , __vite_ssr_import_1__.default) is not a function
|
|
2628
|
+
Γ¥» src/showcase/__tests__/integration/showcase-navigation.test.ts:84:19
|
|
2629
|
+
82|
|
|
2630
|
+
83| it('should update currentPath signal on navigation', (done) => {
|
|
2631
|
+
84| const app = App();
|
|
2632
|
+
| ^
|
|
2633
|
+
85| container.appendChild(app);
|
|
2634
|
+
86|
|
|
2635
|
+
|
|
2636
|
+
⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯[9/12]⎯
|
|
2637
|
+
|
|
2638
|
+
FAIL src/showcase/__tests__/integration/showcase-navigation.test.ts > Showcase Navigation Integration > Page Content Loading > should load control flow page content
|
|
2639
|
+
TypeError: (0 , __vite_ssr_import_1__.default) is not a function
|
|
2640
|
+
Γ¥» src/showcase/__tests__/integration/showcase-navigation.test.ts:102:19
|
|
2641
|
+
100| describe('Page Content Loading', () => {
|
|
2642
|
+
101| it('should load control flow page content', (done) => {
|
|
2643
|
+
102| const app = App();
|
|
2644
|
+
| ^
|
|
2645
|
+
103| container.appendChild(app);
|
|
2646
|
+
104|
|
|
2647
|
+
|
|
2648
|
+
⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯[10/12]⎯
|
|
2649
|
+
|
|
2650
|
+
FAIL src/showcase/__tests__/integration/showcase-navigation.test.ts > Showcase Navigation Integration > Page Content Loading > should load context page content
|
|
2651
|
+
TypeError: (0 , __vite_ssr_import_1__.default) is not a function
|
|
2652
|
+
Γ¥» src/showcase/__tests__/integration/showcase-navigation.test.ts:118:19
|
|
2653
|
+
116|
|
|
2654
|
+
117| it('should load context page content', (done) => {
|
|
2655
|
+
118| const app = App();
|
|
2656
|
+
| ^
|
|
2657
|
+
119| container.appendChild(app);
|
|
2658
|
+
120|
|
|
2659
|
+
|
|
2660
|
+
⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯[11/12]⎯
|
|
2661
|
+
|
|
2662
|
+
FAIL src/showcase/__tests__/integration/showcase-navigation.test.ts > Showcase Navigation Integration > Back Navigation > should navigate back from about to home
|
|
2663
|
+
TypeError: (0 , __vite_ssr_import_1__.default) is not a function
|
|
2664
|
+
Γ¥» src/showcase/__tests__/integration/showcase-navigation.test.ts:136:19
|
|
2665
|
+
134| describe('Back Navigation', () => {
|
|
2666
|
+
135| it('should navigate back from about to home', (done) => {
|
|
2667
|
+
136| const app = App();
|
|
2668
|
+
| ^
|
|
2669
|
+
137| container.appendChild(app);
|
|
2670
|
+
138|
|
|
2671
|
+
|
|
2672
|
+
⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯[12/12]⎯
|
|
2673
|
+
|
|
2674
|
+
⎯⎯⎯⎯⎯⎯ Unhandled Errors ⎯⎯⎯⎯⎯⎯
|
|
2675
|
+
|
|
2676
|
+
Vitest caught 15 unhandled errors during the test run.
|
|
2677
|
+
This might cause false positive tests. Resolve unhandled errors to make sure your tests are not affected.
|
|
2678
|
+
|
|
2679
|
+
⎯⎯⎯⎯⎯ Uncaught Exception ⎯⎯⎯⎯⎯
|
|
2680
|
+
Error: done() callback is deprecated, use promise instead
|
|
2681
|
+
Γ¥» context ../../node_modules/.pnpm/@vitest+runner@4.0.18/node_modules/@vitest/runner/dist/index.js:1272:9
|
|
2682
|
+
Γ¥» Timeout._onTimeout src/showcase/pages/__tests__/reactivity-test.test.ts:40:9
|
|
2683
|
+
38| setTimeout(() => {
|
|
2684
|
+
39| expect(container.textContent).toContain('Alice');
|
|
2685
|
+
40| done();
|
|
2686
|
+
| ^
|
|
2687
|
+
41| }, 50);
|
|
2688
|
+
42| });
|
|
2689
|
+
Γ¥» listOnTimeout node:internal/timers:605:17
|
|
2690
|
+
Γ¥» processTimers node:internal/timers:541:7
|
|
2691
|
+
|
|
2692
|
+
This error originated in "src/showcase/pages/__tests__/reactivity-test.test.ts" test file. It doesn't mean the error was thrown inside the file itself, but while it was running.
|
|
2693
|
+
|
|
2694
|
+
⎯⎯⎯⎯⎯ Uncaught Exception ⎯⎯⎯⎯⎯
|
|
2695
|
+
Error: done() callback is deprecated, use promise instead
|
|
2696
|
+
Γ¥» context ../../node_modules/.pnpm/@vitest+runner@4.0.18/node_modules/@vitest/runner/dist/index.js:1272:9
|
|
2697
|
+
Γ¥» Timeout._onTimeout src/showcase/pages/__tests__/reactivity-test.test.ts:56:9
|
|
2698
|
+
54| setTimeout(() => {
|
|
2699
|
+
55| expect(container.textContent).toContain('Johnson');
|
|
2700
|
+
56| done();
|
|
2701
|
+
| ^
|
|
2702
|
+
57| }, 50);
|
|
2703
|
+
58| });
|
|
2704
|
+
Γ¥» listOnTimeout node:internal/timers:605:17
|
|
2705
|
+
Γ¥» processTimers node:internal/timers:541:7
|
|
2706
|
+
|
|
2707
|
+
This error originated in "src/showcase/pages/__tests__/reactivity-test.test.ts" test file. It doesn't mean the error was thrown inside the file itself, but while it was running.
|
|
2708
|
+
|
|
2709
|
+
⎯⎯⎯⎯⎯ Uncaught Exception ⎯⎯⎯⎯⎯
|
|
2710
|
+
AssertionError: expected '🎨 Phase 2: JSX & DOM Tests 1️⃣ React…' to contain '#10b981'
|
|
2711
|
+
Γ¥» Timeout._onTimeout src/showcase/pages/__tests__/jsx-test.test.ts:39:39
|
|
2712
|
+
37|
|
|
2713
|
+
38| setTimeout(() => {
|
|
2714
|
+
39| expect(container.textContent).toContain('#10b981');
|
|
2715
|
+
| ^
|
|
2716
|
+
40| done();
|
|
2717
|
+
41| }, 50);
|
|
2718
|
+
Γ¥» listOnTimeout node:internal/timers:605:17
|
|
2719
|
+
Γ¥» processTimers node:internal/timers:541:7
|
|
2720
|
+
|
|
2721
|
+
This error originated in "src/showcase/pages/__tests__/jsx-test.test.ts" test file. It doesn't mean the error was thrown inside the file itself, but while it was running.
|
|
2722
|
+
|
|
2723
|
+
⎯⎯⎯⎯⎯ Uncaught Exception ⎯⎯⎯⎯⎯
|
|
2724
|
+
AssertionError: expected undefined to be true // Object.is equality
|
|
2725
|
+
Γ¥» Timeout._onTimeout src/showcase/pages/__tests__/jsx-test.test.ts:58:55
|
|
2726
|
+
56| btn.textContent?.includes('Disabled Button')
|
|
2727
|
+
57| );
|
|
2728
|
+
58| expect(disabledBtn?.hasAttribute('disabled')).toBe(true);
|
|
2729
|
+
| ^
|
|
2730
|
+
59| done();
|
|
2731
|
+
60| }, 50);
|
|
2732
|
+
Γ¥» listOnTimeout node:internal/timers:605:17
|
|
2733
|
+
Γ¥» processTimers node:internal/timers:541:7
|
|
2734
|
+
|
|
2735
|
+
This error originated in "src/showcase/pages/__tests__/jsx-test.test.ts" test file. It doesn't mean the error was thrown inside the file itself, but while it was running.
|
|
2736
|
+
|
|
2737
|
+
⎯⎯⎯⎯⎯ Uncaught Exception ⎯⎯⎯⎯⎯
|
|
2738
|
+
AssertionError: expected '🎯 Phase 2: Control Flow Primitives 1…' to contain 'Content is hidden'
|
|
2739
|
+
Γ¥» Timeout._onTimeout src/showcase/pages/__tests__/control-flow-test.test.ts:36:39
|
|
2740
|
+
34|
|
|
2741
|
+
35| setTimeout(() => {
|
|
2742
|
+
36| expect(container.textContent).toContain('Content is hidden');
|
|
2743
|
+
| ^
|
|
2744
|
+
37| expect(container.textContent).not.toContain('Content is visibl…
|
|
2745
|
+
38| done();
|
|
2746
|
+
Γ¥» listOnTimeout node:internal/timers:605:17
|
|
2747
|
+
Γ¥» processTimers node:internal/timers:541:7
|
|
2748
|
+
|
|
2749
|
+
This error originated in "src/showcase/pages/__tests__/control-flow-test.test.ts" test file. It doesn't mean the error was thrown inside the file itself, but while it was running.
|
|
2750
|
+
|
|
2751
|
+
⎯⎯⎯⎯⎯ Uncaught Exception ⎯⎯⎯⎯⎯
|
|
2752
|
+
AssertionError: expected '🎯 Phase 2: Control Flow Primitives 1…' to contain 'Error state is active!'
|
|
2753
|
+
Γ¥» Timeout._onTimeout src/showcase/pages/__tests__/control-flow-test.test.ts:53:39
|
|
2754
|
+
51|
|
|
2755
|
+
52| setTimeout(() => {
|
|
2756
|
+
53| expect(container.textContent).toContain('Error state is active…
|
|
2757
|
+
| ^
|
|
2758
|
+
54| done();
|
|
2759
|
+
55| }, 50);
|
|
2760
|
+
Γ¥» listOnTimeout node:internal/timers:605:17
|
|
2761
|
+
Γ¥» processTimers node:internal/timers:541:7
|
|
2762
|
+
|
|
2763
|
+
This error originated in "src/showcase/pages/__tests__/control-flow-test.test.ts" test file. It doesn't mean the error was thrown inside the file itself, but while it was running.
|
|
2764
|
+
|
|
2765
|
+
⎯⎯⎯⎯⎯ Uncaught Exception ⎯⎯⎯⎯⎯
|
|
2766
|
+
AssertionError: expected '🔌 Phase 5: Context API & Dependency …' to contain 'Theme: light'
|
|
2767
|
+
Γ¥» Timeout._onTimeout src/showcase/pages/__tests__/context-test.test.ts:36:39
|
|
2768
|
+
34|
|
|
2769
|
+
35| setTimeout(() => {
|
|
2770
|
+
36| expect(container.textContent).toContain('Theme: light');
|
|
2771
|
+
| ^
|
|
2772
|
+
37| done();
|
|
2773
|
+
38| }, 50);
|
|
2774
|
+
Γ¥» listOnTimeout node:internal/timers:605:17
|
|
2775
|
+
Γ¥» processTimers node:internal/timers:541:7
|
|
2776
|
+
|
|
2777
|
+
This error originated in "src/showcase/pages/__tests__/context-test.test.ts" test file. It doesn't mean the error was thrown inside the file itself, but while it was running.
|
|
2778
|
+
|
|
2779
|
+
⎯⎯⎯⎯⎯ Uncaught Exception ⎯⎯⎯⎯⎯
|
|
2780
|
+
AssertionError: expected '🔌 Phase 5: Context API & Dependency …' to contain '#ff0000'
|
|
2781
|
+
Γ¥» Timeout._onTimeout src/showcase/pages/__tests__/context-test.test.ts:50:39
|
|
2782
|
+
48|
|
|
2783
|
+
49| setTimeout(() => {
|
|
2784
|
+
50| expect(container.textContent).toContain('#ff0000');
|
|
2785
|
+
| ^
|
|
2786
|
+
51| done();
|
|
2787
|
+
52| }, 50);
|
|
2788
|
+
Γ¥» listOnTimeout node:internal/timers:605:17
|
|
2789
|
+
Γ¥» processTimers node:internal/timers:541:7
|
|
2790
|
+
|
|
2791
|
+
This error originated in "src/showcase/pages/__tests__/context-test.test.ts" test file. It doesn't mean the error was thrown inside the file itself, but while it was running.
|
|
2792
|
+
|
|
2793
|
+
⎯⎯⎯⎯⎯ Uncaught Exception ⎯⎯⎯⎯⎯
|
|
2794
|
+
AssertionError: expected '🛡️ Phase 4: Error Boundaries & Error…' to contain 'Critical render error!'
|
|
2795
|
+
Γ¥» Timeout._onTimeout src/showcase/pages/__tests__/error-boundary-test.test.ts:38:39
|
|
2796
|
+
36| setTimeout(() => {
|
|
2797
|
+
37| expect(container.textContent).toContain('Error Caught');
|
|
2798
|
+
38| expect(container.textContent).toContain('Critical render error…
|
|
2799
|
+
| ^
|
|
2800
|
+
39| done();
|
|
2801
|
+
40| }, 50);
|
|
2802
|
+
Γ¥» listOnTimeout node:internal/timers:605:17
|
|
2803
|
+
Γ¥» processTimers node:internal/timers:541:7
|
|
2804
|
+
|
|
2805
|
+
This error originated in "src/showcase/pages/__tests__/error-boundary-test.test.ts" test file. It doesn't mean the error was thrown inside the file itself, but while it was running.
|
|
2806
|
+
|
|
2807
|
+
⎯⎯⎯⎯⎯ Uncaught Exception ⎯⎯⎯⎯⎯
|
|
2808
|
+
Error: done() callback is deprecated, use promise instead
|
|
2809
|
+
Γ¥» context ../../node_modules/.pnpm/@vitest+runner@4.0.18/node_modules/@vitest/runner/dist/index.js:1272:9
|
|
2810
|
+
Γ¥» Timeout._onTimeout src/showcase/pages/__tests__/context-test.test.ts:71:9
|
|
2811
|
+
69|
|
|
2812
|
+
70| expect(themedBoxes.length).toBeGreaterThanOrEqual(3);
|
|
2813
|
+
71| done();
|
|
2814
|
+
| ^
|
|
2815
|
+
72| }, 50);
|
|
2816
|
+
73| });
|
|
2817
|
+
Γ¥» listOnTimeout node:internal/timers:605:17
|
|
2818
|
+
Γ¥» processTimers node:internal/timers:541:7
|
|
2819
|
+
|
|
2820
|
+
This error originated in "src/showcase/pages/__tests__/context-test.test.ts" test file. It doesn't mean the error was thrown inside the file itself, but while it was running.
|
|
2821
|
+
|
|
2822
|
+
⎯⎯⎯⎯⎯ Uncaught Exception ⎯⎯⎯⎯⎯
|
|
2823
|
+
AssertionError: expected '🛡️ Phase 4: Error Boundaries & Error…' to contain 'My custom error message'
|
|
2824
|
+
Γ¥» Timeout._onTimeout src/showcase/pages/__tests__/error-boundary-test.test.ts:59:39
|
|
2825
|
+
57|
|
|
2826
|
+
58| setTimeout(() => {
|
|
2827
|
+
59| expect(container.textContent).toContain('My custom error messa…
|
|
2828
|
+
| ^
|
|
2829
|
+
60| done();
|
|
2830
|
+
61| }, 50);
|
|
2831
|
+
Γ¥» listOnTimeout node:internal/timers:605:17
|
|
2832
|
+
Γ¥» processTimers node:internal/timers:541:7
|
|
2833
|
+
|
|
2834
|
+
This error originated in "src/showcase/pages/__tests__/error-boundary-test.test.ts" test file. It doesn't mean the error was thrown inside the file itself, but while it was running.
|
|
2835
|
+
|
|
2836
|
+
⎯⎯⎯⎯⎯ Uncaught Exception ⎯⎯⎯⎯⎯
|
|
2837
|
+
AssertionError: expected '🔌 Phase 5: Context API & Dependency …' to contain 'Welcome, Alice!'
|
|
2838
|
+
Γ¥» Timeout._onTimeout src/showcase/pages/__tests__/context-test.test.ts:95:39
|
|
2839
|
+
93|
|
|
2840
|
+
94| setTimeout(() => {
|
|
2841
|
+
95| expect(container.textContent).toContain('Welcome, Alice!');
|
|
2842
|
+
| ^
|
|
2843
|
+
96| expect(container.textContent).toContain('Role: admin');
|
|
2844
|
+
97| done();
|
|
2845
|
+
Γ¥» listOnTimeout node:internal/timers:605:17
|
|
2846
|
+
Γ¥» processTimers node:internal/timers:541:7
|
|
2847
|
+
|
|
2848
|
+
This error originated in "src/showcase/pages/__tests__/context-test.test.ts" test file. It doesn't mean the error was thrown inside the file itself, but while it was running.
|
|
2849
|
+
|
|
2850
|
+
⎯⎯⎯⎯⎯ Uncaught Exception ⎯⎯⎯⎯⎯
|
|
2851
|
+
AssertionError: expected '🔌 Phase 5: Context API & Dependency …' to contain 'Welcome, Bob!'
|
|
2852
|
+
Γ¥» Timeout._onTimeout src/showcase/pages/__tests__/context-test.test.ts:112:39
|
|
2853
|
+
110|
|
|
2854
|
+
111| setTimeout(() => {
|
|
2855
|
+
112| expect(container.textContent).toContain('Welcome, Bob!');
|
|
2856
|
+
| ^
|
|
2857
|
+
113| expect(container.textContent).toContain('Role: user');
|
|
2858
|
+
114| done();
|
|
2859
|
+
Γ¥» listOnTimeout node:internal/timers:605:17
|
|
2860
|
+
Γ¥» processTimers node:internal/timers:541:7
|
|
2861
|
+
|
|
2862
|
+
This error originated in "src/showcase/pages/__tests__/context-test.test.ts" test file. It doesn't mean the error was thrown inside the file itself, but while it was running.
|
|
2863
|
+
|
|
2864
|
+
⎯⎯⎯⎯⎯ Uncaught Exception ⎯⎯⎯⎯⎯
|
|
2865
|
+
AssertionError: expected '🛡️ Phase 4: Error Boundaries & Error…' to contain 'Section 1 failed'
|
|
2866
|
+
Γ¥» Timeout._onTimeout src/showcase/pages/__tests__/error-boundary-test.test.ts:99:39
|
|
2867
|
+
97|
|
|
2868
|
+
98| setTimeout(() => {
|
|
2869
|
+
99| expect(container.textContent).toContain('Section 1 failed');
|
|
2870
|
+
| ^
|
|
2871
|
+
100| expect(container.textContent).not.toContain('Section 2 failed'…
|
|
2872
|
+
101| expect(container.textContent).not.toContain('Section 3 failed'…
|
|
2873
|
+
Γ¥» listOnTimeout node:internal/timers:605:17
|
|
2874
|
+
Γ¥» processTimers node:internal/timers:541:7
|
|
2875
|
+
|
|
2876
|
+
This error originated in "src/showcase/pages/__tests__/error-boundary-test.test.ts" test file. It doesn't mean the error was thrown inside the file itself, but while it was running.
|
|
2877
|
+
|
|
2878
|
+
⎯⎯⎯⎯⎯ Uncaught Exception ⎯⎯⎯⎯⎯
|
|
2879
|
+
AssertionError: expected '🛡️ Phase 4: Error Boundaries & Error…' to contain 'Section 1 failed'
|
|
2880
|
+
Γ¥» Timeout._onTimeout src/showcase/pages/__tests__/error-boundary-test.test.ts:118:39
|
|
2881
|
+
116|
|
|
2882
|
+
117| setTimeout(() => {
|
|
2883
|
+
118| expect(container.textContent).toContain('Section 1 failed');
|
|
2884
|
+
| ^
|
|
2885
|
+
119| expect(container.textContent).toContain('Section 2 failed');
|
|
2886
|
+
120| done();
|
|
2887
|
+
Γ¥» listOnTimeout node:internal/timers:605:17
|
|
2888
|
+
Γ¥» processTimers node:internal/timers:541:7
|
|
2889
|
+
|
|
2890
|
+
This error originated in "src/showcase/pages/__tests__/error-boundary-test.test.ts" test file. It doesn't mean the error was thrown inside the file itself, but while it was running.
|
|
2891
|
+
⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯
|
|
2892
|
+
|
|
2893
|
+
|
|
2894
|
+
[2m Test Files [22m [1m[31m4 failed[39m[22m[2m | [22m[1m[32m8 passed[39m[22m[90m (12)[39m
|
|
2895
|
+
[2m Tests [22m [1m[31m12 failed[39m[22m[2m | [22m[1m[32m93 passed[39m[22m[90m (105)[39m
|
|
2896
|
+
[2m Errors [22m [1m[31m15 errors[39m[22m
|
|
2897
|
+
[2m Start at [22m 03:19:42
|
|
2898
|
+
[2m Duration [22m 3.57s[2m (transform 13.63s, setup 837ms, import 18.61s, tests 1.32s, environment 16.04s)[22m
|
|
2899
|
+
|
|
2900
|
+
ΓÇëELIFECYCLEΓÇë Test failed. See above for more details.
|