From 32541aef20bffc6f0d020c0c6ae9a2ce94b7585d Mon Sep 17 00:00:00 2001 From: "Matthew \"strager\" Glazar" Date: Thu, 28 Dec 2023 00:00:40 -0500 Subject: [PATCH] feat(test-typescript): disable failing tests --- tools/test-typescript/main.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tools/test-typescript/main.cpp b/tools/test-typescript/main.cpp index a2e0bd729f..a7bb86a6b4 100644 --- a/tools/test-typescript/main.cpp +++ b/tools/test-typescript/main.cpp @@ -39,9 +39,15 @@ constexpr String8_View ignored_tests[] = { u8"/importedModuleClassNameClash.ts"sv, // TODO(#1123): quick-lint-js does not parse UTF-16 source files. + u8"/bom-utf16be.ts"sv, u8"/bom-utf16le.ts"sv, - u8"/unicodeIdentifierNames.ts"sv, u8"/collisionCodeGenModuleWithUnicodeNames.ts"sv, + u8"/promiseTest.ts"sv, + u8"/unicodeIdentifierNames.ts"sv, + + // This test correctly emits E0193 (a warning). + // TODO(strager): Disable E0193 for this test but still check this test. + u8"/keywordInJsxIdentifier.tsx"sv, // This test correctly emits E0196 (a warning). // TODO(strager): Disable E0196 for this test but still check this test.