Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion packages/e2e-tests/tests/highlighter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ test("highlighter: element highlighter works everywhere", async ({
// at all (is the box even visible on screen), and 2) is it
// over the iframe element we're trying to highlight.
// These coordinates visually match the location of the iframe.
const pathDefinitionToCompare = `M8,44 L312,44 L312,198 L8,198`;
const pathDefinitionToCompare = `M8,45 L312,45 L312,199 L8,199`;
expect(normalizedPathDefinition).toBe(pathDefinitionToCompare);
});
2 changes: 1 addition & 1 deletion packages/e2e-tests/tests/object_preview-04.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ test(`object_preview-04: Test scope mapping and switching between generated/orig
url: "bundle_input.js",
});

await warpToMessage(page, "20", 15);
await warpToMessage(page, "20", 19);

await expandAllScopesBlocks(page);
await waitForScopeValue(page, "bar", "ƒo()");
Expand Down
2 changes: 1 addition & 1 deletion packages/e2e-tests/tests/stepping-06.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ test(`stepping-06: Test stepping in async frames and async call stacks`, async (
await waitForScopeValue(page, "n", "4");
await waitForFrameTimeline(page, "85%");
await selectFrame(page, 3);
await waitForFrameTimeline(page, "83%");
await waitForFrameTimeline(page, "71%");
await selectFrame(page, 4);
await waitForFrameTimeline(page, "0%");
await selectFrame(page, 0);
Expand Down
Loading