From bf61564510648ce1e132aca100e08e6f1be82539 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=A3=A8=EB=B0=80LuMir?= Date: Mon, 20 Apr 2026 22:27:37 +0900 Subject: [PATCH] test: add test cases for AST node expansion --- e2e-tests/code-editing-and-ast-interaction.test.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/e2e-tests/code-editing-and-ast-interaction.test.ts b/e2e-tests/code-editing-and-ast-interaction.test.ts index 3d683bd..3ac4e5d 100644 --- a/e2e-tests/code-editing-and-ast-interaction.test.ts +++ b/e2e-tests/code-editing-and-ast-interaction.test.ts @@ -127,3 +127,7 @@ test(`should keep ESQuery highlights aligned while typing before a matching lite ).toBe(true); await expect(highlight).toHaveText(["42"]); }); + +test.describe("AST node expansion", () => { + // TODO +});