Added build before running the tests and the no-build option to opt out of it.

Added new tests to ProjectDependencyCommandResolver and new E2E tests for dotnet test.
This commit is contained in:
Livar Cunha 2016-03-14 17:38:36 -07:00
parent 45abe6d52b
commit 8358ccb5e8
14 changed files with 276 additions and 17 deletions

View file

@ -14,9 +14,9 @@ namespace FakeTests
}
[Fact]
public void It_fails()
public void It_also_succeeds()
{
Assert.True(false);
Assert.True(true);
}
}
}