Skip to content

Commit a628c0e

Browse files
authored
fix mac arm64 e2e test expectations (#10639)
1 parent 804d82e commit a628c0e

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/e2e-tests/tests/highlighter.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ test("highlighter: element highlighter works everywhere", async ({
3636
// at all (is the box even visible on screen), and 2) is it
3737
// over the iframe element we're trying to highlight.
3838
// These coordinates visually match the location of the iframe.
39-
const pathDefinitionToCompare = `M8,44 L312,44 L312,198 L8,198`;
39+
const pathDefinitionToCompare = `M8,45 L312,45 L312,199 L8,199`;
4040
expect(normalizedPathDefinition).toBe(pathDefinitionToCompare);
4141
});

packages/e2e-tests/tests/object_preview-04.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ test(`object_preview-04: Test scope mapping and switching between generated/orig
2323
url: "bundle_input.js",
2424
});
2525

26-
await warpToMessage(page, "20", 15);
26+
await warpToMessage(page, "20", 19);
2727

2828
await expandAllScopesBlocks(page);
2929
await waitForScopeValue(page, "bar", "ƒo()");

packages/e2e-tests/tests/stepping-06.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ test(`stepping-06: Test stepping in async frames and async call stacks`, async (
3333
await waitForScopeValue(page, "n", "4");
3434
await waitForFrameTimeline(page, "85%");
3535
await selectFrame(page, 3);
36-
await waitForFrameTimeline(page, "83%");
36+
await waitForFrameTimeline(page, "71%");
3737
await selectFrame(page, 4);
3838
await waitForFrameTimeline(page, "0%");
3939
await selectFrame(page, 0);

0 commit comments

Comments
 (0)