Summary
bun run test:live-svelte-adapter-deepseek fails on latest main, but DeepSeek does apply the requested edit first.
The failure looks like the test expects the live bar to contain Go, while the current bar renders an icon-only submit button instead.
This probably used to be correct when the live feature had a visible Go button. The UI no longer shows one, so the assertion looks stale.
Repro
- Check out latest
main.
- Install deps with
bun install --frozen-lockfile.
- Run:
DEEPSEEK_API_KEY=<set> bun run test:live-svelte-adapter-deepseek
Observed
The first steer succeeds:
- <h1 class="hero-title">Offene Ausgaben</h1>
+ <h1 class="hero-title" data-impeccable-steer="e2e">Ausgaben</h1>
Then the test fails here:
tests/live-svelte-adapter-deepseek.test.mjs:458
AssertionError [ERR_ASSERTION]: false !== true
Captured live bar text:
Expected
The test should pass after the successful steer, or it should look for the actual submit control instead of requiring visible Go text.
Summary
bun run test:live-svelte-adapter-deepseekfails on latestmain, but DeepSeek does apply the requested edit first.The failure looks like the test expects the live bar to contain
Go, while the current bar renders an icon-only submit button instead.This probably used to be correct when the live feature had a visible Go button. The UI no longer shows one, so the assertion looks stale.
Repro
main.bun install --frozen-lockfile.Observed
The first steer succeeds:
Then the test fails here:
Captured live bar text:
Expected
The test should pass after the successful steer, or it should look for the actual submit control instead of requiring visible
Gotext.