Mihail Stoykov

Results 99 issues of Mihail Stoykov

While #35 will add Blob support at some point, the current API automatically sets `binaryType` to `arraybuffer` and as of #64 warns hat this will not be done in the...

## What? Error out if binarytype was not set to arraybuffer. ## Why? This lets us stabalize this in k6 without finishign #35 ## Checklist - [ ] I have...

There are still some test (from the very late ones) that are failing. Unfortunately it isn't immediately obvious what they test or what is failing exactly so that will likely...

enhancement

Connected [issue](https://github.com/grafana/k6/issues/2024) for the original k6 api

enhancement

https://github.com/gorilla/websocket isn't exactly known for it's awesome performance an has for years been undermaintained in my (albeit small) experience with it. Quick goolge search finds us https://github.com/nhooyr/websocket - which is...

enhancement

The current specification API doesn't have a way to know if or when a message was actually send successfully (or not). like https://github.com/websockets/ws/blob/master/doc/ws.md#websocketsenddata-options-callback

enhancement

From https://github.com/grafana/xk6-websockets/pull/44#discussion_r1169706247 While I did look into this a while back and was left with the impression it is fine due to the [doc](https://pkg.go.dev/github.com/gorilla/websocket?utm_source=godoc#Conn.Close) > Close closes the underlying network...

_Originally posted by @olegbespalov in https://github.com/grafana/xk6-websockets/pull/39#discussion_r1157004218_

I did skip [Blob](https://developer.mozilla.org/en-US/docs/Web/API/Blob) as it seamed to be just bad idea increasing the problems I have tried to explore in this [epic issue](https://github.com/grafana/k6/issues/2311). But 1. it does support [streams](https://developer.mozilla.org/en-US/docs/Web/API/Blob/stream)...

``` addrs: __ENV.REDIS_ADDRS.split(",") || new Array("localhost:6379"), // in the form of "host:port", separated by commas ``` will give you `TypeError: Cannot read property 'split' of undefined or null` so it...