Skip to content

Commit

Permalink
Skip test on Mobile platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
tarekgh committed Jul 30, 2024
1 parent 0c3145d commit 7109a74
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ static void AssertExceptions(IReadOnlyList<Measurement<long>> measurements, int
new object[] { "dotnet.timer.count", s_longGreaterThanOrEqualToZero, null },
};

[ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotBrowser))]
[ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotMobile))]
[MemberData(nameof(Measurements))]
public void ValidateMeasurements<T>(string metricName, Func<T, (bool, string?)>? valueAssertion, Func<bool>? beforeRecord)
where T : struct
Expand Down

0 comments on commit 7109a74

Please sign in to comment.