Skip to content

Commit 4c6a2a0

Browse files
authoredJul 19, 2024··
Merge pull request #361 from SAFE-Stack/new-test-target
change runTest command to WatchRunTests
2 parents 877758b + c1bb9f9 commit 4c6a2a0

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)
Please sign in to comment.