Inside project.json I wrote:
"testRunner": "mstest"
and in dependences:
"MSTest.TestAdapter": "1.0.0-preview"
But Test Explorer is not able to discover any tests inside.
I guessed that correct package is "dotnet-test-mstest": "1.0.1-preview"
But it does not work as well...
In command line dotnet test command runs correctly:
Discovering Tests ...
Executing Tests ...
Passed AuthenticateSuccessful
============ Test Run Summary ============
Total tests: 1. Passed: 1. Failed: 0. Skipped: 0
Test Run Successful.
SUMMARY: Total: 1 targets, Passed: 1, Failed: 0.