Skip to content

Commit

Permalink
Disabling tests failing on Firefox. (#98103)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilonatommy authored Feb 7, 2024
1 parent 6a2a4ac commit 0fafa50
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -816,8 +816,9 @@ await EvaluateOnCallFrameAndCheck(id,
("mc.Method(instance2.propInt)", TNumber(12))
);
});

[Fact]

// https://github.com/dotnet/runtime/issues/98086
[ConditionalFact(nameof(RunningOnChrome))]
public async Task EvaluateValueTypeWithFixedArrayAndMoreFields() => await CheckInspectLocalsAtBreakpointSite(
"DebuggerTests.EvaluateValueTypeWithFixedArray", "run", 3, "DebuggerTests.EvaluateValueTypeWithFixedArray.run",
"window.setTimeout(function() { invoke_static_method ('[debugger-test] DebuggerTests.EvaluateValueTypeWithFixedArray:run'); })",
Expand All @@ -829,8 +830,9 @@ await RuntimeEvaluateAndCheck(
("myVar.myIntArray[1]", TNumber(2)),
("myVar.myCharArray[2]", TChar('a')));
});

[Fact]

// https://github.com/dotnet/runtime/issues/98086
[ConditionalFact(nameof(RunningOnChrome))]
public async Task EvaluateValueTypeWithObjectValueType() => await CheckInspectLocalsAtBreakpointSite(
"DebuggerTests.EvaluateValueTypeWithObjectValueType", "run", 3, "DebuggerTests.EvaluateValueTypeWithObjectValueType.run",
"window.setTimeout(function() { invoke_static_method ('[debugger-test] DebuggerTests.EvaluateValueTypeWithObjectValueType:run'); })",
Expand Down

0 comments on commit 0fafa50

Please sign in to comment.