deyanp

Results 64 comments of deyanp

Ignore that, figured it out, and this helped me: [https://github.com/nojaf/elmish-component](https://github.com/nojaf/elmish-component) I have reworked the HelloWorld sample with components, but not sure if it is fully correct, and if you are...

https://github.com/deyanp/FSBoleroHelloWorldComponents ...

Wow, great, thanks for the quick reply! Is there an elegant way to combine the "type BookService/interface IRemoteService" approach with Swagger/OpenAPI-based APIs? Or should I just create e.g. MerchantService module...

Getting a compiler error on Cmd.ofTask - it seems that function is missing?

> I'm guessing that's because it's more recent than the minimal required version of Elmish. Try to update that reference, that should do it. Sorry, didn't get that, Elmish is...

Sorry, forgot to mention that I tried that already, however Bolero [https://www.nuget.org/packages/Bolero/0.5.29-preview1](https://www.nuget.org/packages/Bolero/0.5.29-preview1) has restriction `Elmish (>= 2.0.0 && < 3.0.0)` for some reason ... Anyway, changed my code to F#...

Pls check https://github.com/deyanp/XunitGherkinTests in VS Code with .Net Core Test Explorer. What I see is: ![image](https://user-images.githubusercontent.com/25847560/63494012-1adc0280-c4bd-11e9-850c-55030cf6d095.png) even though I have 2 scenarios in the feature file (I just copied the...

Just wanted to add that on the cmd line the tests are recognized ... ``` PS C:\Users\Deyan\TryProjects\XUnitTests> dotnet test -t Test run for C:\Users\Deyan\TryProjects\XUnitTests\bin\Debug\netcoreapp2.2\XUnitTests.dll(.NETCoreApp,Version=v2.2) Microsoft (R) Test Execution Command Line...

And one more note ;), the .Net Core Test Explorer for VS Code is issuing the following command to find the tests in a project: `Executing dotnet vstest "c:\Users\Deyan\TryProjects\XUnitTests\bin\Debug\netcoreapp2.2\XUnitTests.dll" /ListFullyQualifiedTests...

I retested with .Net Core Test Explorer in VS Code, and it issues 2 commands, not 1: ``` Executing dotnet test -t -v=q in c:/Users/Deyan/TryProjects/XUnitTests/ Executing dotnet vstest "c:\Users\Deyan\TryProjects\XUnitTests\bin\Debug\netcoreapp2.2\XUnitTests.dll" /ListFullyQualifiedTests...