Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions packages/e2e-tests/tests/stepping-06.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ test(`stepping-06: Test stepping in async frames and async call stacks`, async (
await selectFrame(page, 3);
await waitForFrameTimeline(page, "71%");
await selectFrame(page, 4);
// linux produces 100%, mac arm64 produces 0%
await waitForFrameTimeline(page, process.platform === "linux" ? "100%" : "0%");
await waitForFrameTimeline(page, "100%");
await selectFrame(page, 0);
await stepOverToLine(page, 20);
await stepOverToLine(page, 21);
Expand Down
Loading