Merge pull request #1017 from PowerShell/andschwa/xunit

Update xUnit runner
This commit is contained in:
Andy Schwartzmeyer 2016-05-20 17:30:15 -07:00
commit a2ed67c97c
3 changed files with 4 additions and 4 deletions

View file

@ -336,7 +336,7 @@ function Start-PSxUnit {
}
$Content = Split-Path -Parent (Get-PSOutput)
$Arguments = "--configuration", "Linux"
$Arguments = "--configuration", "Linux", "-verbose", "-parallel", "none"
try {
Push-Location $PSScriptRoot/test/csharp
# Path manipulation to obtain test project output directory

View file

@ -5,7 +5,7 @@
"authors": [ "andschwa" ],
"dependencies": {
"Microsoft.PowerShell.ConsoleHost": "1.0.0-*"
"powershell": "1.0.0-*"
},
"frameworks": {
@ -13,7 +13,7 @@
"imports": [ "dnxcore50", "portable-net45+win8" ],
"dependencies": {
"xunit": "2.1.0",
"dotnet-test-xunit": "1.0.0-rc2-173384-19"
"dotnet-test-xunit": "1.0.0-rc2-192208-24"
}
}
},

View file

@ -12,7 +12,7 @@ namespace PSTests
public class RunspaceTests
{
private static int count = 3;
private static string script = String.Format($"get-process | select-object -first {count}");
private static string script = String.Format($"get-command | select-object -first {count}");
[Fact]
public void TestRunspaceWithPipeline()