From fc20e759aab82d1f103056772212915b997b8c02 Mon Sep 17 00:00:00 2001 From: Yuval Sivan Date: Sat, 29 Apr 2023 01:23:45 +0300 Subject: [PATCH] fix: warning suppression broken (fix #3270) --- packages/vitest/suppress-warnings.cjs | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/vitest/suppress-warnings.cjs b/packages/vitest/suppress-warnings.cjs index b4fb71886852..9bc4cbb0fdc5 100644 --- a/packages/vitest/suppress-warnings.cjs +++ b/packages/vitest/suppress-warnings.cjs @@ -4,6 +4,7 @@ const ignoreWarnings = new Set([ '--experimental-loader is an experimental feature. This feature could change at any time', 'Custom ESM Loaders is an experimental feature. This feature could change at any time', + 'Custom ESM Loaders is an experimental feature and might change at any time', ]) const { emit } = process