Bojan

Results 78 comments of Bojan

I think I'm hitting the same type of thing. something like: ``` js describe("someGetFunction", function () { it("should get data when called without options", function (done) { myLib.getMyData(function (err, myInfo)...

Yup support for load balancing has been requested in other issues, see #103. I agree it would be a useful feature. I will try and get to it eventually, but...

Hello, thanks for the PR! I _think_ I get the idea, but can you elaborate some more on the context and usage and how this solves some of the issues...

This should be possible using [cross compile](https://golang.org/cmd/compile/) ([tutorial](https://www.digitalocean.com/community/tutorials/building-go-applications-for-different-operating-systems-and-architectures#using-your-local-goos-and-goarch-environment-variables)). Simply install go, clone the repository, and then compile: ```sh $ cd cmd/ghz $ CGO_ENABLED=0 GOOS=linux GOARCH=arm go build . ``` This...

Hello, sorry this fell through without any attention. I do not use typescript and do not have much practical knowledge with it. A PR would be welcome.

Hello, thank you for the PR. Can you elaborate the issue this addresses? I agree with the change of order of assignments, but why are we removing the `options` param...

Hmm really not sure I think more details are needed, but I am guessing something is wrong on the server end with respect to what it does with the data...

Hello, thank you for the PR and the detailed description! I understand the problem, and I think this is a sensible approach. I will probably need another read through, but...

Hello, can you please provide a reproducible code example. Additionally can you try the `req_res` branch of #11 and see if the problem still persists. Note that now you have...

Hello, thanks for kind words regarding the tool 😄 . If I understand correctly... this is basically the hypothetical scenario: We have a service, for example: ``` service UserService {...