From 036de79711aa03e41903633dd6b47015dca49348 Mon Sep 17 00:00:00 2001 From: Yuval Date: Wed, 3 May 2023 12:23:01 +0300 Subject: [PATCH] fix: warning suppression broken (fix #3270) (#3271) --- 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