From dbd21a861ae9618faf03e1965986154052224351 Mon Sep 17 00:00:00 2001 From: Evan Wallace Date: Sun, 4 Sep 2022 18:50:04 +0800 Subject: [PATCH] tests: skip new features in test262 --- scripts/test262.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/test262.js b/scripts/test262.js index cd95e803691..05eff446155 100644 --- a/scripts/test262.js +++ b/scripts/test262.js @@ -142,6 +142,8 @@ async function main() { if (yaml.features) { if (yaml.features.includes('hashbang')) return + if (yaml.features.includes('decorators')) return + if (yaml.features.includes('regexp-v-flag')) return if (yaml.features.includes('regexp-match-indices')) return if (yaml.features.includes('regexp-named-groups')) return if (yaml.features.includes('regexp-unicode-property-escapes')) return