File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
Backend.Tests/Repositories Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ namespace Backend.Tests.Repositories
1414 /// Integration tests for <see cref="WordRepository"/> that spin up an actual MongoDB instance.
1515 /// </summary>
1616 [ TestFixture ]
17+ [ Category ( "IntegrationTest" ) ]
1718 public sealed class WordRepositoryTests
1819 {
1920 private static MongoDbTestRunner _runner = null ! ;
Original file line number Diff line number Diff line change 3232 "test" : " run-s test-backend test-frontend" ,
3333 "test-backend" : " dotnet test Backend.Tests/Backend.Tests.csproj" ,
3434 "test-backend:coverage" : " dotnet test Backend.Tests/Backend.Tests.csproj /p:CollectCoverage=true /p:CoverletOutputFormat=lcov /p:Threshold=77" ,
35+ "test:integration" : " dotnet test Backend.Tests/Backend.Tests.csproj --filter \" TestCategory=IntegrationTest\" " ,
36+ "test:unit" : " dotnet test Backend.Tests/Backend.Tests.csproj --filter \" TestCategory!=IntegrationTest\" " ,
3537 "test-frontend" : " node scripts/jestTest.js" ,
3638 "test-frontend:coverage" : " node scripts/jestTest.js --coverage --watchAll=false" ,
3739 "test-frontend:debug" : " node --inspect-brk scripts/jestTest.js --runInBand --no-cache" ,
You can’t perform that action at this time.
0 commit comments