diff --git a/packages/e2e-test/src/commands/run.ts b/packages/e2e-test/src/commands/run.ts index 0a9ac6368c..77e2e83c4c 100644 --- a/packages/e2e-test/src/commands/run.ts +++ b/packages/e2e-test/src/commands/run.ts @@ -531,7 +531,11 @@ async function testBackendStart(appDir: string, ...args: string[]) { !l.includes( 'ExperimentalWarning: `globalPreload` is planned for removal in favor of `initialize`.', // Node 18 ) && - !l.includes('node --trace-warnings ...'), + !l.includes( + 'DeprecationWarning: The `punycode` module is deprecated.', // Node 22 + ) && + !l.includes('node --trace-warnings ...') && + !l.includes('node --trace-deprecation ...'), ); };