3e8c48eefc
The WASM binding's test module (added in B6) used `.ok().expect(...)` on the Result-returning constructors. clippy's ok_expect lint rejects this under the workspace's `-D warnings`, and the CI rust job lints wickra-wasm with --all-targets — so the branch would fail CI. Replace all seven `.ok().expect(...)` with `.expect(...)` directly; JsError implements Debug, so this compiles and gives a better panic message. clippy and fmt are now clean for wickra-wasm.