Trying to fix test assertions

This commit is contained in:
Jonathan Tran
2025-03-17 17:16:58 -04:00
parent 15c3f21acc
commit 041000fbb6

View File

@ -189,7 +189,7 @@ sketch001 = startSketchOn('XY')
|> line(end = [20, 0]) |> line(end = [20, 0])
|> line(end = [0, 20]) |> line(end = [0, 20])
|> line(end = [-20, 0]) |> line(end = [-20, 0])
|> close()`) |> close()`.replaceAll('\n', ''))
}) })
test('if you click the format button it formats your code and executes so lints are still there', async ({ test('if you click the format button it formats your code and executes so lints are still there', async ({
@ -240,7 +240,7 @@ sketch_001 = startSketchOn('XY')
|> line(end = [20, 0]) |> line(end = [20, 0])
|> line(end = [0, 20]) |> line(end = [0, 20])
|> line(end = [-20, 0]) |> line(end = [-20, 0])
|> close()`) |> close()`.replaceAll('\n', ''))
// error in guter // error in guter
await expect(page.locator('.cm-lint-marker-info').first()).toBeVisible() await expect(page.locator('.cm-lint-marker-info').first()).toBeVisible()