David Johnston

Results 81 comments of David Johnston

@Ionaru I've written a guide for testing here: https://blacksheepcode.com/posts/testing_easy_mde The main take away is: - There's all sorts of difficulties testing when it's in `inputStyle: "textarea"` mode. It comes down...

Hmmm, I've just looked at the repro I just posted and the behaviour isn't exactly the same. Now the behaviour I'm seeing is: - Resetting the form immediately will alert...

Hi I know that this PR is still in progress - I happen to be investigating how to using MSW with NextJS - it appears that this example as it...

Note that if we remove all the headers and set `headersSize` to 0, it'll work - so I suspect that one of these headers is not playing nicely with Mockbin.

@priyesh9875 That's the solution I ended up going for.

I am having the same problem. Here's my `foo.go` (sample taken from the [docs](https://goswagger.io/use/spec/model.html)) ```go package foo // User represents the user for this application // // A user is...

Is this a dupe of https://github.com/go-swagger/go-swagger/issues/2841 though? Although @0xean says he is running 0.30.3 and still gets it. I upgraded to 0.30.3 and the issue persists. CC: @casualjim

Update: The above failures were when I was running swagger using the swagger installed via the homebrew command. When I installed swagger via go as per [this comment](https://github.com/go-swagger/go-swagger/issues/2841#issuecomment-1257244951) running: ```...

Ok, this has been driving me crazy: I was able to reproduce this error this way: ``` import * as AWSMock from "aws-sdk-mock"; import * as AWS from "aws-sdk"; describe...

Good works @jules-ofs - certainly solves what I've been trying to solve. Does feel a bit icky, but, but yeah, it's cool.