Enable tests to run using dotnet xunit runner

This commit is contained in:
Kiran Challa 2016-02-09 21:38:43 -08:00
parent 1d22eed129
commit 72f8b04a33
1 changed files with 7 additions and 10 deletions

View File

@ -9,10 +9,14 @@
"xunit": "2.1.0" "xunit": "2.1.0"
}, },
"testRunner": "xunit", "testRunner": "xunit",
"commands": {
"test": "xunit.runner.aspnet"
},
"frameworks": { "frameworks": {
"dnxcore50": {
"dependencies": {
"dotnet-test-xunit": "1.0.0-dev-*",
"moq.netcore": "4.4.0-beta8"
},
"imports": "portable-net451+win8"
},
"dnx451": { "dnx451": {
"frameworkAssemblies": { "frameworkAssemblies": {
"System.Runtime": "", "System.Runtime": "",
@ -22,13 +26,6 @@
"Moq": "4.2.1312.1622", "Moq": "4.2.1312.1622",
"xunit.runner.console": "2.1.0" "xunit.runner.console": "2.1.0"
} }
},
"dnxcore50": {
"dependencies": {
"moq.netcore": "4.4.0-beta8",
"xunit.runner.aspnet": "2.0.0-aspnet-*"
},
"imports": "portable-net451+win8"
} }
} }
} }