We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13086e1 commit 34a0422Copy full SHA for 34a0422
packages/prettier-plugin-java/test/test-utils.ts
@@ -117,6 +117,10 @@ export function testRepositorySample(
117
maxBuffer: Infinity
118
});
119
if (code.status !== 0) {
120
+ console.log("error", code.error);
121
+ console.log("stderr", code.stderr);
122
+ (code.output ?? []).forEach(out => console.log("output", out));
123
+
124
expect.fail(
125
`Cannot build ${testFolder}, please check the output below:\n${code.error ?? code.stderr}`
126
);
0 commit comments