diff --git a/tests/e2e.rs b/tests/e2e.rs index bfe49a12..55ca1ffd 100644 --- a/tests/e2e.rs +++ b/tests/e2e.rs @@ -110,7 +110,10 @@ mod test { child.kill().expect("Error stopping wws"); // Test - assert!(body.contains(expected_text)); + assert!( + body.contains(expected_text), + "result \"{body}\" does not contain \"{expected_text}\"" + ); } #[test]