Enable tests to run using dotnet xunit runner
This commit is contained in:
parent
99fbeb6ac3
commit
5a8c5bf48d
|
|
@ -9,8 +9,15 @@
|
||||||
"emitEntryPoint": true
|
"emitEntryPoint": true
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"dnx451": {},
|
"dnxcore50": {
|
||||||
"dnxcore50": {}
|
"dependencies": {
|
||||||
|
"dotnet-test-xunit": "1.0.0-dev-*"
|
||||||
|
},
|
||||||
|
"imports": "portable-net451+win8"
|
||||||
|
},
|
||||||
|
"dnx451": {}
|
||||||
},
|
},
|
||||||
"content": [ "hosting.json" ]
|
"content": [
|
||||||
|
"hosting.json"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
@ -6,6 +6,12 @@
|
||||||
},
|
},
|
||||||
"testRunner": "xunit",
|
"testRunner": "xunit",
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
|
"dnxcore50": {
|
||||||
|
"dependencies": {
|
||||||
|
"dotnet-test-xunit": "1.0.0-dev-*"
|
||||||
|
},
|
||||||
|
"imports": "portable-net451+win8"
|
||||||
|
},
|
||||||
"dnx451": {
|
"dnx451": {
|
||||||
"frameworkAssemblies": {
|
"frameworkAssemblies": {
|
||||||
"System.Runtime": ""
|
"System.Runtime": ""
|
||||||
|
|
@ -13,15 +19,6 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"xunit.runner.console": "2.1.0"
|
"xunit.runner.console": "2.1.0"
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"dnxcore50": {
|
|
||||||
"dependencies": {
|
|
||||||
"xunit.runner.aspnet": "2.0.0-aspnet-*"
|
|
||||||
},
|
|
||||||
"imports": "portable-net45+win8"
|
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"commands": {
|
|
||||||
"test": "xunit.runner.aspnet"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,7 +1,4 @@
|
||||||
{
|
{
|
||||||
"commands": {
|
|
||||||
"TestClient": "TestClient"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.AspNetCore.WebSockets.Protocol": "0.1.0-*",
|
"Microsoft.AspNetCore.WebSockets.Protocol": "0.1.0-*",
|
||||||
"Microsoft.AspNetCore.WebSockets.Client": "0.1.0-*"
|
"Microsoft.AspNetCore.WebSockets.Client": "0.1.0-*"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue