Glen Mailer

Results 160 comments of Glen Mailer

Adding a new top level function is quite tricky, but this could work ``` js afterEach.verify(function() { // verify if mocks fulfilled all expectations // if it throws just print...

Any word on this? We're looking into incorporating some new scenarios and this would be very handy. If there's still more work before it can be added to core, is...

There's some subtleties I missed in this the first time around, but here's what I've ended up with I'm on the fence a bit about whether it makes sense to...

Hello! Yeah, I'm on the same page as you here - the need is there but I'm not quite sure about the exact approach. > Is it safe to call...

i recently tried to do this with the following code, it worked well when it passed, and produced an unhelpful message when it failed. ```go func not(c cmp.Comparison) cmp.Comparison {...

> I think something along those lines should work. Yep, that makes sense - thanks.

From what I can tell, grpc/protobuf generated code didn't used to have any private fields - but the new rewrite they did recently now does. I've opened an issue with...

A `PathOp` seems like a good approach to me. I ran into this when setting `cwd`, as apparently under the hood that follows symlinks.

This was for some code which creates & sets the working directory. The flow was: - test: generate tempdir - code: chdir to the tempdir - test: assert cwd =...

I just ran into this when trying to pass list/hash types to the `azurerm_template_deployment` resource. AzureRM templates and the go wrapper around them both support arbitrary types, but it looks...