Andre Dreyer

Results 9 comments of Andre Dreyer

Forgive my ignorance, I have zero experience with vim plugins. I'm an idiot after all, my PATH wasn't set up correctly so the plugin was using my global typescript (npm...

I'm having trouble with http headers: The following nodejs(8.9.1) code doesn't work in jest, I assume it has to do with an Array check? ``` const http = require('http'); const...

Anyone have a workaround? Issue has been open for over a year. How are you using cookies?

Maybe to clarify the title, it is not required by curl it is required by http (all http web servers), https://tools.ietf.org/html/rfc6265#section-5.4 https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cookie "A list of name-value pairs in the form...

Sorry I'm stupid, my cookies were not being set due to an unrelated issue. I thought this was the reason, but I see now that this is indeed just an...

You have to require hammer.backbone only once in your app, since it modifies your views. If you only require it in one view you will can get this error when...

I'm experiencing the same issue. We have a test suite in which we experience this issue but each test passes in isolation so the code is difficult to reproduce. Downgrading...

@vkarpov15 I was finally able to reproduce this issue after trying out mongoose 8.10. Here is a link to the code that I've been using to reproduce the issue, https://github.com/t1bb4r/mongoose-issue-14949/blob/main/test.js....

I think that I understand the issue a lot better now after some reading. I can explain the issue that I'm having by focusing on this piece of code: ```...