Fix tests

This commit is contained in:
Rob Lourens
2026-03-16 16:51:36 -07:00
parent 3da382383e
commit c5ea6d24f0
4 changed files with 6 additions and 5 deletions

View File

@@ -207,8 +207,8 @@ async function startServer(): Promise<{ process: ChildProcess; port: number }> {
}
});
child.stderr!.on('data', (data: Buffer) => {
console.error('[TestServer]', data.toString());
child.stderr!.on('data', () => {
// Intentionally swallowed - the test runner fails if console.error is used.
});
child.on('error', err => {