From 8ef57b3a4c01c53ae6937ee747b7b840ca408ee4 Mon Sep 17 00:00:00 2001 From: Erik Schierboom Date: Wed, 8 Mar 2017 21:55:01 +0100 Subject: [PATCH] Add dotnet clean workaround to TESTS.md (#221) * Add dotnet clean workaround to TESTS.md * Update TESTS.md --- docs/TESTS.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/TESTS.md b/docs/TESTS.md index 231ce97133..98a1bcf35d 100644 --- a/docs/TESTS.md +++ b/docs/TESTS.md @@ -12,6 +12,12 @@ You can then run the tests by executing the following command: dotnet test ``` +Note: if the .NET CLI fails to detect your latest source code changes, please run the following command before running `dotnet test`: + +```bash +dotnet clean +``` + ## Solving the exercise Solving an exercise means making all its tests pass. By default, only one test (the first one) is executed when you run the tests. This is intentional, as it allows you to focus on just making that one test pass. Once it passes, you can enable the next test by removing `Skip = "Remove to run test"` from the test's `[Fact]` or `[Theory]` attribute. When all tests have been enabled and your implementation makes them all pass, you'll have solved the exercise! @@ -30,4 +36,4 @@ Once the package has been added, you need to update the project's dependencies a ```bash dotnet restore -``` \ No newline at end of file +```