Skip to content

Commit

Permalink
Merge pull request #361 from SAFE-Stack/new-test-target
Browse files Browse the repository at this point in the history
change runTest command to WatchRunTests
  • Loading branch information
Larocceau authored Jul 19, 2024
2 parents 877758b + c1bb9f9 commit 4c6a2a0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion docs/recipes/developing-and-testing/testing-the-client.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@ dotnet run
```
you should instead use
```powershell
dotnet run Runtests
dotnet run WatchRunTests
```

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

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:
Expand Down
5 changes: 4 additions & 1 deletion docs/recipes/developing-and-testing/testing-the-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@ dotnet run

you should instead use
```powershell
dotnet run RunTests
dotnet run WatchRunTests
```

> Prior to template version 5.0.8, the command to run the tests was `dotnet run RunTests`
This will execute the tests and print the results into the console window.

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

0 comments on commit 4c6a2a0

Please sign in to comment.