diff --git a/e2e/playwright/code-pane-and-errors.spec.ts b/e2e/playwright/code-pane-and-errors.spec.ts index 9a7e18b3c..c448c044a 100644 --- a/e2e/playwright/code-pane-and-errors.spec.ts +++ b/e2e/playwright/code-pane-and-errors.spec.ts @@ -80,7 +80,9 @@ test.describe('Code pane and errors', () => { // Delete a character to break the KCL await editor.openPane() await editor.scrollToText('bracketLeg1Sketch, length = thickness)') - await page.getByText('extrude(bracketLeg1Sketch, length = thickness)').click() + await page + .getByText('extrude(bracketLeg1Sketch, length = thickness)') + .click() await page.keyboard.press('Backspace') // Ensure that a badge appears on the button diff --git a/e2e/playwright/testing-segment-overlays.spec.ts b/e2e/playwright/testing-segment-overlays.spec.ts index 0fbd803c7..59498330b 100644 --- a/e2e/playwright/testing-segment-overlays.spec.ts +++ b/e2e/playwright/testing-segment-overlays.spec.ts @@ -332,7 +332,8 @@ test.describe('Testing segment overlays', () => { await clickConstrained({ hoverPos: { x: lineTo.x, y: lineTo.y }, constraintType: 'yAbsolute', - expectBeforeUnconstrained: 'line(endAbsolute = [5 + 33, 20 + 11.5 + 0])', + expectBeforeUnconstrained: + 'line(endAbsolute = [5 + 33, 20 + 11.5 + 0])', expectAfterUnconstrained: 'line(endAbsolute = [5 + 33, 31.5], %)', expectFinal: 'line(endAbsolute = [5 + 33, yAbs001])', steps: 8,