user753

Results 14 comments of user753

@Raathigesh Yes, for small html string it could work. But if it's a functional test for whole page, see such html string isn't very useful. In this case I would...

@MeltingMosaic Could class static method be used? ``` class Factory { @injectable static fooBar(foo: Foo, bar: Bar) { // do stuff with foo and bar } } ```

>And look like it's time to update documentation :) It would be great. d.ts file doesn't even have `proxyShallowEqual`. Also, there is a typo in package.json `"types": "proxyqual.d.ts",`

@taion I think `css` should return class name in the same way as `styled-components` and `emotion` for records something like this could be used ``` const styles = { red:...

@jquense any news about this feature?

@dkamyshov Thanks, but I use typescript with babel. Is there any plan to support direct mode through babel?

@andyczerwonka I think If it would throw NotImplementedError then yes. But it generates incorrect documentation, so I believe it is a bug.

@adamw I use windows 10, sbt 1.3.4, scala 2.13.1 Yes, I need to connect through proxy. I have all `Dhttp.proxy*` settings in `sbtconfig.txt` and I guess `HttpURLConnectionBackend` can use them....

`SttpBackendOptions.Default` has a proxy settings. I use backend like this ``` val response = AsyncHttpClientCatsBackend[cats.effect.IO]().flatMap(implicit backend => { request.send() }).unsafeRunSync() ```

So, `SttpBackendOptions.Default` has system proxy settings with host and port without username and password. `HttpURLConnectionBackend` can work with such settings ``` implicit val backend = HttpURLConnectionBackend( options = SttpBackendOptions.httpProxy(proxyhost, proxyport)...