From 0857415793f4404b0bdbc3a34f85e9e07f875b9c Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Fri, 19 Apr 2024 18:16:33 -0700 Subject: [PATCH] turn back on test (#2178) * turn back on test Signed-off-by: Jess Frazelle * format Signed-off-by: Jess Frazelle --------- Signed-off-by: Jess Frazelle --- e2e/playwright/flow-tests.spec.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/e2e/playwright/flow-tests.spec.ts b/e2e/playwright/flow-tests.spec.ts index 4e91d0ace6..82c6f6c71d 100644 --- a/e2e/playwright/flow-tests.spec.ts +++ b/e2e/playwright/flow-tests.spec.ts @@ -328,9 +328,7 @@ test('if you write invalid kcl you get inlined errors', async ({ page }) => { await expect(page.locator('.cm-lint-marker-error')).not.toBeVisible() }) -/* Ignore this test for now since its causing engine to crash - * - * test('if your kcl gets an error from the engine it is inlined', async ({ +test('if your kcl gets an error from the engine it is inlined', async ({ page, }) => { const u = getUtils(page) @@ -349,7 +347,7 @@ const sketch001 = startSketchOn(box, "revolveAxis") |> startProfileAt([5, 10], %) |> line([0, -10], %) |> line([2, 0], %) -|> line([0, 10], %) +|> line([0, -10], %) |> close(%) |> revolve({ axis: getEdge('revolveAxis', box), @@ -378,7 +376,7 @@ angle: 90 'sketch profile must lie entirely on one side of the revolution axis' ) ).toBeVisible() -})*/ +}) test('executes on load', async ({ page }) => { const u = getUtils(page)