From 6a6b000f775477931708dbf7f65071fd37b569df Mon Sep 17 00:00:00 2001 From: Richard Gibson Date: Fri, 19 Sep 2025 15:33:38 -0400 Subject: [PATCH] Remove glob for nonexistent test262 directory **test/intl402/Intl/DateTimeFormat** was removed by https://github.com/tc39/test262/commit/7ab6423e3a0e15b38fb69caa69537adf8c2b0728 --- index.mjs | 1 - 1 file changed, 1 deletion(-) diff --git a/index.mjs b/index.mjs index a4ec695..67334c0 100644 --- a/index.mjs +++ b/index.mjs @@ -229,7 +229,6 @@ export default function runTest262({ [ path.resolve(testSubdirectory, '**/Temporal/**/*.js'), path.resolve(testSubdirectory, 'intl402/DateTimeFormat/**/*.js'), - path.resolve(testSubdirectory, 'intl402/Intl/DateTimeFormat/**/*.js'), // "p*" is a workaround because there is no toTemporalInstant dir at this time path.resolve(testSubdirectory, 'built-ins/Date/p*/toTemporalInstant/*.js') ].forEach((defaultGlob) => globResults.push(...globSync(defaultGlob, GLOB_OPTS)));