HS: skip throttled-at test — generator gap (missing click dispatches)
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 40s

The spec test asserts textContent="1" immediately after hs-activate!
with no click events dispatched. This is an irreparable generator gap:
the original JS test dispatches 3 synchronous clicks before asserting.
Since spec/ is out of scope and the test can never pass as written,
add it to _SKIP_TESTS in the runner.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-05 13:40:47 +00:00
parent 297f0603e5
commit 8f8f9623e0

View File

@@ -823,6 +823,8 @@ for(let i=startTest;i<Math.min(endTest,testCount);i++){
// waiting for an event that is never fired from outside the K.eval call chain. // waiting for an event that is never fired from outside the K.eval call chain.
const _SKIP_TESTS = new Set([ const _SKIP_TESTS = new Set([
"until event keyword works", "until event keyword works",
// Generator gap: spec is missing click dispatches; asserts textContent="1" with no events fired.
"throttled at <time> drops events within the window",
]); ]);
if (_SKIP_TESTS.has(name)) continue; if (_SKIP_TESTS.has(name)) continue;