Skip to content

Commit 0fafa50

Browse files
authored
Disabling tests failing on Firefox. (#98103)
1 parent 6a2a4ac commit 0fafa50

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/mono/browser/debugger/DebuggerTestSuite/EvaluateOnCallFrame2Tests.cs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -816,8 +816,9 @@ await EvaluateOnCallFrameAndCheck(id,
816816
("mc.Method(instance2.propInt)", TNumber(12))
817817
);
818818
});
819-
820-
[Fact]
819+
820+
// https://github.com/dotnet/runtime/issues/98086
821+
[ConditionalFact(nameof(RunningOnChrome))]
821822
public async Task EvaluateValueTypeWithFixedArrayAndMoreFields() => await CheckInspectLocalsAtBreakpointSite(
822823
"DebuggerTests.EvaluateValueTypeWithFixedArray", "run", 3, "DebuggerTests.EvaluateValueTypeWithFixedArray.run",
823824
"window.setTimeout(function() { invoke_static_method ('[debugger-test] DebuggerTests.EvaluateValueTypeWithFixedArray:run'); })",
@@ -829,8 +830,9 @@ await RuntimeEvaluateAndCheck(
829830
("myVar.myIntArray[1]", TNumber(2)),
830831
("myVar.myCharArray[2]", TChar('a')));
831832
});
832-
833-
[Fact]
833+
834+
// https://github.com/dotnet/runtime/issues/98086
835+
[ConditionalFact(nameof(RunningOnChrome))]
834836
public async Task EvaluateValueTypeWithObjectValueType() => await CheckInspectLocalsAtBreakpointSite(
835837
"DebuggerTests.EvaluateValueTypeWithObjectValueType", "run", 3, "DebuggerTests.EvaluateValueTypeWithObjectValueType.run",
836838
"window.setTimeout(function() { invoke_static_method ('[debugger-test] DebuggerTests.EvaluateValueTypeWithObjectValueType:run'); })",

0 commit comments

Comments
 (0)