Skip to content

Commit

Permalink
Merge 38cadcb into d5a4090
Browse files Browse the repository at this point in the history
  • Loading branch information
bvaughn authored Feb 22, 2024
2 parents d5a4090 + 38cadcb commit eb4d41a
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions packages/e2e-tests/tests/stepping-05_chromium.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,17 @@ test(`stepping-05_chromium: Test stepping in pretty-printed code`, async ({
await addBreakpoint(page, { url: exampleKey, lineNumber: 8 });
await resumeToLine(page, 8);
await stepOverToLine(page, 8);

// TODO Stepping here hangs
// await stepOverToLine(page, 9);
await stepOverToLine(page, 8); // Chromium requires an extra step than Gecko
await stepOverToLine(page, 9);
await stepOverToLine(page, 9); // Chromium requires an extra step than Gecko
await stepOverToLine(page, 10);

await openConsolePanel(page);
await addEventListenerLogpoints(page, [{ eventType: "click", categoryKey: "mouse" }]);
await warpToMessage(page, "(click)", 15);

await stepInToLine(page, 15);
await stepOutToLine(page, 12);

// TODO Stepping here hangs
// await stepInToLine(page, 10);
// await stepOutToLine(page, 15);
// await stepInToLine(page, 5);
// await stepOutToLine(page, 15);
await stepInToLine(page, 2);
await stepOutToLine(page, 15);
});

0 comments on commit eb4d41a

Please sign in to comment.