fix: invalid heroledger 404 smoke tests fail deploy-staging CI #19
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
The smoke test script checks that
/api/heroledger/account/existsand/api/heroledger/spore/balancereturn 404. But these were never backend API routes — the Dioxus SPA catch-all servesindex.htmlfor any unknown path, so they always return 200.This causes deploy-staging CI (run #51) to fail on the backend smoke tests step even though the deploy itself succeeded.
Fix
Remove the 2 invalid heroledger 404 tests from
scripts/smoke-test.sh.