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 eb5a768 commit da50c82Copy full SHA for da50c82
tests/src/lib.rs
@@ -148,7 +148,16 @@ mod integration {
148
if output.status.success() {
149
true
150
} else {
151
- panic!("{}", String::from_utf8(output.stdout).unwrap());
+ panic!(
152
+ "
153
+ status: {}
154
+ stdout: {}
155
+ stderr: {}
156
+ ",
157
+ output.status,
158
+ String::from_utf8(output.stdout).unwrap(),
159
+ String::from_utf8(output.stderr).unwrap()
160
+ );
161
}
162
163
0 commit comments