e2e-test: allowlist backend punycode warning

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2024-10-22 14:40:27 +02:00
parent 0587633545
commit 3578c57e4f
+5 -1
View File
@@ -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 ...'),
);
};