Skip to content

Commit

Permalink
Split presentation info vs current production info test categories
Browse files Browse the repository at this point in the history
  • Loading branch information
kipash committed Jun 20, 2024
1 parent 8444b7d commit 769c934
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/Editor/SampleChecks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ namespace SampleChecks
{
internal class SampleChecks
{
internal const string PublicInfoCategoryName = "Docs and Deployments";
internal const string ProductionStateCategoryName = "Deployments";
internal const string PublicInfoCategoryName = "Docs";
internal const string CodeCategoryName = "Code";

internal static List<SampleInfo> GetSamples()
Expand Down Expand Up @@ -97,7 +98,7 @@ public void TearDown()
}

[Test]
[Category(SampleChecks.PublicInfoCategoryName)]
[Category(SampleChecks.ProductionStateCategoryName)]
public async Task IsLive()
{
var sampleLiveUrl = sample.LiveUrl;
Expand Down Expand Up @@ -148,7 +149,7 @@ async Task GetEngineVersionsIfNeeded()


[Test]
[Category(SampleChecks.PublicInfoCategoryName)]
[Category(SampleChecks.ProductionStateCategoryName)]
public async Task VersionIsNotTooOld()
{
// fetch the HTML page
Expand Down

0 comments on commit 769c934

Please sign in to comment.