Skip to content

Commit

Permalink
feat(test-typescript): disable failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
strager committed Dec 28, 2023
1 parent b731f26 commit 32541ae
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tools/test-typescript/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 32541ae

Please sign in to comment.