Add integration test for maximum schema depth error handling (#5685)

This commit is contained in:
Jacob MacDonald
2025-08-06 13:45:54 -07:00
committed by GitHub
parent b3cfaeb6d3
commit e3e7677753
4 changed files with 227 additions and 17 deletions

View File

@@ -258,6 +258,11 @@ export class TestRig {
result = filteredLines.join('\n');
}
// If we have stderr output, include that also
if (stderr) {
result += `\n\nStdErr:\n${stderr}`;
}
resolve(result);
} else {
reject(new Error(`Process exited with code ${code}:\n${stderr}`));