Files
rose-ash/sx/sx/applications/hyperscript/gallery-expressions-no/index.sx
giles 1a9c8d61b5 Hyperscript gallery: one-per-file page migration (76 pages)
Migrates hyperscript demo/reference pages from grouped index files into
one-per-page directory layout. Each gallery-<topic>/index.sx is a single
defpage with its own demo, matching the one-per-file convention used
elsewhere in sx/sx/applications/.

Covers: control (call/go/if/log/repeat/settle), dom (add/append/empty/
focus/hide/measure/morph/put/remove/reset/scroll/set/show/swap/take/
toggle), events (asyncError/bootstrap/dialog/fetch/halt/init/on/pick/
send/socket/tell/wait/when), expressions (asExpression/attributeRef/
closest/collectionExpressions/comparisonOperator/default/in/increment/
logicalOperator/mathOperator/no/objectLiteral/queryRef/select/splitJoin),
language (askAnswer/assignableElements/component/cookies/def/dom-scope/
evalStatically/js/parser/relativePositionalExpression/scoping), and
reactivity (bind/live/liveTemplate/reactive-properties/resize/transition).

Adds _islands/hs-test-card.sx — a shared island for hyperscript demos.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-22 09:08:30 +00:00

42 lines
2.0 KiB
Plaintext

;; AUTO-GENERATED from spec/tests/hyperscript-upstream-tests.json
;; DO NOT EDIT — regenerate with:
;; python3 tests/playwright/generate-sx-tests.py --emit-pages
(defcomp ()
(~docs/page :title "Hyperscript: no (5 tests — 0 runnable)"
(p :style "color:#57534e;margin-bottom:1rem" "Live cards for the upstream no tests. 0 of 5 are reproducible in-browser; the remainder show their source for reference.")
(p :style "color:#78716c;font-size:0.875rem;margin-bottom:1rem"
"Theme: " (a :href "/sx/(applications.(hyperscript.gallery-expressions))"
:style "color:#7c3aed" "expressions"))
(div :style "display:flex;flex-direction:column"
(~hyperscript/hs-test-card
:name "no returns false for non-empty array"
:html ""
:action "await run(\"no ['"
:check ""
:run-src "(fn (sandbox) (error \"not yet runnable in gallery — see test suite\"))")
(~hyperscript/hs-test-card
:name "no with where filters then checks emptiness"
:html ""
:action "await run(\"no [1, 2, 3] where it > 5\""
:check ""
:run-src "(fn (sandbox) (error \"not yet runnable in gallery — see test suite\"))")
(~hyperscript/hs-test-card
:name "no with where returns false when matches exist"
:html ""
:action "await run(\"no [1, 2, 3] where it > 1\""
:check ""
:run-src "(fn (sandbox) (error \"not yet runnable in gallery — see test suite\"))")
(~hyperscript/hs-test-card
:name "no with where and is not"
:html ""
:action "await run(\"no [1, 2, 3] where it is not 2\""
:check "toBe(false)"
:run-src "(fn (sandbox) (error \"not yet runnable in gallery — see test suite\"))")
(~hyperscript/hs-test-card
:name "no with where on DOM elements"
:html "<div id='box'><span class='a'>A</span><span class='b'>B</span></div><button _=\\\"on click if no <span/> in #box where it matches .c then put 'none' into #out else put 'found' into #out\\\">go</button><div id='out'></div>"
:action "find('button').click()"
:check "toHaveText(\"none\")"
:run-src "(fn (sandbox) (error \"not yet runnable in gallery — see test suite\"))"))))