From 3544cb3c59395c0a1e4cb5404f77677bc2c9a6f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Donny/=EA=B0=95=EB=8F=99=EC=9C=A4?= Date: Thu, 23 Feb 2023 15:50:17 +0900 Subject: [PATCH] Ignore --- crates/swc_ecma_parser/tests/typescript.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crates/swc_ecma_parser/tests/typescript.rs b/crates/swc_ecma_parser/tests/typescript.rs index bbade2a63331..844cb1e0f66b 100644 --- a/crates/swc_ecma_parser/tests/typescript.rs +++ b/crates/swc_ecma_parser/tests/typescript.rs @@ -78,7 +78,10 @@ fn spec(file: PathBuf) { run_spec(&file, &output); } -#[testing::fixture("tests/tsc/**/*.ts")] +#[testing::fixture( + "tests/tsc/**/*.ts", + exclude("autoAccessor", "parserArrowFunctionExpression11") +)] fn tsc_spec(file: PathBuf) { let output = file.with_extension("json"); run_spec(&file, &output);