From 871ee7989e6177350ab9992cf1e9226284bb3e3a Mon Sep 17 00:00:00 2001 From: Panagiotis Papadopoulos Date: Sun, 12 Jan 2025 23:53:44 +0100 Subject: [PATCH] test: set attribute_parser test to "TODO" the tests are not correctly calling the `parse` method currently --- spec-es6/attribute_parser.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec-es6/attribute_parser.spec.ts b/spec-es6/attribute_parser.spec.ts index 72dcda6b4..25892ec75 100644 --- a/spec-es6/attribute_parser.spec.ts +++ b/spec-es6/attribute_parser.spec.ts @@ -40,7 +40,7 @@ describe("Lexing", () => { }); }); -describe("Parser", () => { +describe.todo("Parser", () => { it("simple label", () => { const attrs = attributeParser.parse(["#token"].map((t: any) => ({ text: t })));