Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update stepping-05_chromium.test to match new (fixed) BAC stepping behavior #10356

Merged
merged 1 commit into from
Feb 22, 2024
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
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);
});
Loading