Skip to content

Commit

Permalink
Add dotnet clean workaround to TESTS.md (#221)
Browse files Browse the repository at this point in the history
* Add dotnet clean workaround to TESTS.md

* Update TESTS.md
  • Loading branch information
ErikSchierboom authored Mar 8, 2017
1 parent 685486e commit 8ef57b3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/TESTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand All @@ -30,4 +36,4 @@ Once the package has been added, you need to update the project's dependencies a

```bash
dotnet restore
```
```

0 comments on commit 8ef57b3

Please sign in to comment.