Skip to content

Commit

Permalink
📝 Update README-template
Browse files Browse the repository at this point in the history
  • Loading branch information
jasontaylordev committed Jul 29, 2023
1 parent 57b500a commit c6dd0f6
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions README-template.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,17 @@ dotnet new install Clean.Architecture.Solution.Template::8.0.0-preview.6.12

## Test

The solution contains unit, integration, and acceptance tests.
<!--#if (UseApiOnly) -->
The solution contains unit, integration, and functional tests.

To run the unit and integration tests (excluding acceptance tests):
To run the tests:
```bash
dotnet test"
```
<!--#else -->
The solution contains unit, integration, functional, and acceptance tests.
To run the unit, integration, and functional tests (excluding acceptance tests):
```bash
dotnet test --filter "FullyQualifiedName!~AcceptanceTests"
```
Expand All @@ -62,6 +70,7 @@ Then, in a new console, run the tests:
cd .\src\Web\
dotnet test
```
<!--#endif -->
## Help
To learn more about the template go to the [project website](https://github.com/JasonTaylorDev/CleanArchitecture). Here you can find additional guidance, request new features, report a bug, and discuss the template with other users.

0 comments on commit c6dd0f6

Please sign in to comment.