Sebastien Dubois
Sebastien Dubois
View > Reload make the view go blank. In the network tab of the dev tools, I can see the requests going out when the refresh command is executed, but...
mkcert currently sets the name of the Root CA certificate to "mkcert user@host"; at least that's what I see in my Trusted Root Certification Authorities on Windows. Would it be...
**What happened?** After updating my project's dependency from 4.10.0 to 4.12.2, starting devspace sync causes an "install loop". I've tried removing the globally installed DevSpace package, removing/reinstalling my project dependencies,...
We've noticed that the minified build of FakeRest uses eval in some places, for example: ``` ...Function("binder","return function ("+c.join(",")+"){ return binder.apply(this,arguments); }")(a); ``` The above fails if the Content Security...
Hello, I've stumbled upon your library while creating a new Website and thought it would be nice to add some runtime type safety by means of io-ts. So I've tried...
Avoid having poor devs facing bugs that have already been solved and let them face the new ones instead :)
### Prerequisites - [x] Did you check the [FAQ](https://github.com/typings/typings/blob/master/docs/faq.md)? - [x] Did you search open **and closed** issues to see if your issue has already been reported? ### Description My...
It would be nice to support configuring typings through package.json, for example like babel does it (choice between package.json or a .babelrc file).
Is it or would it be possible to do something like this: ``` argumentsCaptor().apply { verify(myClass, times(2)).setItems(argumentsCaptor.capture(0), argumentsCaptor.capture(1)) assertEquals("firstArgValue", firstValue[0].propOnFirstArg) assertEquals("secondArgValue", firstValue[1].propOnSecondArg) ... } ``` Thus easily create multiple KArgumentCaptor...