Skip to content

Commit c1bb9f9

Browse files
committed
change runTest command to WatchRunTests, and add note about RunTest target
1 parent 877758b commit c1bb9f9

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

docs/recipes/developing-and-testing/testing-the-client.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,11 @@ dotnet run
2424
```
2525
you should instead use
2626
```powershell
27-
dotnet run Runtests
27+
dotnet run WatchRunTests
2828
```
2929

30+
> Prior to template version 5.0.8, the command to run the tests was `dotnet run RunTests`
31+
3032
#### 2. View the results
3133

3234
Once the build is complete and the website is running, navigate to `http://localhost:8081/` in a web browser. You should see a test results page that looks like this:

docs/recipes/developing-and-testing/testing-the-server.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,11 @@ dotnet run
1919

2020
you should instead use
2121
```powershell
22-
dotnet run RunTests
22+
dotnet run WatchRunTests
2323
```
24+
25+
> Prior to template version 5.0.8, the command to run the tests was `dotnet run RunTests`
26+
2427
This will execute the tests and print the results into the console window.
2528

2629
<img src="../../../img/expecto-results.png"/>

0 commit comments

Comments
 (0)