From 7bbdf096aa49f43909f559756e55127f831344f3 Mon Sep 17 00:00:00 2001 From: Sosuke Suzuki Date: Sun, 3 Oct 2021 19:51:34 +0900 Subject: [PATCH] Update parser plugins for ts tests (#13808) --- scripts/parser-tests/typescript/index.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/scripts/parser-tests/typescript/index.js b/scripts/parser-tests/typescript/index.js index 52813b16587d..56b346fa8a9f 100644 --- a/scripts/parser-tests/typescript/index.js +++ b/scripts/parser-tests/typescript/index.js @@ -16,13 +16,7 @@ async function* loadTests(dir) { } } -const plugins = [ - "typescript", - "classProperties", - "decorators-legacy", - "bigInt", - "dynamicImport", -]; +const plugins = ["typescript", "decorators-legacy"]; const TSTestsPath = path.join(dirname, "../../../build/typescript/tests");