Skip to content

Commit

Permalink
Switch order of build file
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebazzz committed Nov 15, 2023
1 parent 93cfa90 commit 464f8b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,9 @@ void TestTask(string name, string projectName, Func<bool> criteria = null) {
}
}

Task("Test-CS")
.Description("Test backend-end compiled code");

TestTask("Unit-Application", $"{baseName}.Application.Tests.Unit");
TestTask("Unit-Domain", $"{baseName}.Domain.Tests.Unit");
TestTask("Unit-Web", $"{baseName}.Web.Tests.Unit");
Expand All @@ -444,9 +447,6 @@ Task("Test-PreReq-Playwright-Browser")
DotNetTool(".", "playwright", "install firefox chromium");
});

Task("Test-CS")
.Description("Test backend-end compiled code");

Task("Test")
.IsDependentOn("Test-CS")
.Description("Run all tests");
Expand Down

0 comments on commit 464f8b4

Please sign in to comment.