You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: make fetch example tests actually run and properly await async o…
…perations (#153)
The asyncFetchTest was being called without await, returning a Promise that couldn't be destructured. Additionally, the Response.text() and Response.json() tests were using .then() callbacks that never executed during synchronous function evaluation. Made greet() async and use await throughout to ensure all Promise-based operations properly resolve before validation.
Co-authored-by: Claude Haiku 4.5 <noreply@anthropic.com>