Skip to content

Commit

Permalink
fix(test-typescript): disable false positive failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
strager committed Dec 20, 2023
1 parent 6c2c2fc commit e9d7ac6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tools/test-typescript/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ constexpr String8_View ignored_tests[] = {
u8"/downlevelLetConst15.ts"sv,
u8"/initializePropertiesWithRenamedLet.ts"sv,

// This test correctly emits E0266 (a warning).
// TODO(strager): Disable E0266 for this test but still check this test.
u8"/castOfAwait.ts"sv,

// These tests correctly emit E0427 (a warning).
// TODO(strager): Disable E0427 for all tests and don't ignore these tests.
u8"/es5-asyncFunctionSwitchStatements.ts"_sv,
Expand Down

0 comments on commit e9d7ac6

Please sign in to comment.