diff --git a/packages/hurl/src/report/html/run.rs b/packages/hurl/src/report/html/run.rs index db55c78d836..ca5836e3702 100644 --- a/packages/hurl/src/report/html/run.rs +++ b/packages/hurl/src/report/html/run.rs @@ -76,6 +76,10 @@ fn get_entry_html(entry: &EntryResult, entry_index: usize) -> String { let mut text = String::new(); text.push_str(&format!("Entry {entry_index}")); + let cmd = entry.curl_cmd.to_string(); + let table = new_table("Debug", &[("Command", &cmd)]); + text.push_str(&table); + if !entry.captures.is_empty() { let mut values = entry .captures