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
The client currently uses WebSocket to send a "Run" request and receive test logs. Since the client only listens for updates after triggering the test, SSE is more appropriate for this one-way communication.
We should:
Replace the WebSocket connection with SSE for real-time updates from the server.
Client triggers the run, then listens for updates via SSE.
The text was updated successfully, but these errors were encountered:
Description
The client currently uses WebSocket to send a "Run" request and receive test logs. Since the client only listens for updates after triggering the test, SSE is more appropriate for this one-way communication.
We should:
The text was updated successfully, but these errors were encountered: