Krzysztof Łabuś
Krzysztof Łabuś
Automatic generation of `index.ts` file containing imports would be a pretty neat feature. AFAIK right now if we're using modules we need to import each file independently in TS code:...
Hello. I've notice that current `ConsulClient` constructors don't allow us to provide a custom `HttpClient`/`HttpMessageHandler` instances. We can only override configuration of default instances created inside the library through `Action`/`Action`....
Having two collections where one of them is `null` Shouldly can't produce proper assertion message: ``` string[] actual = null; string[] expected = new[] { "hello", "world" }; actual.ShouldBe(expected, true);...