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 b13ef25 commit 6eedfc2Copy full SHA for 6eedfc2
src/web/mod.rs
@@ -671,6 +671,9 @@ mod test {
671
fn check_doc_coverage_is_present_for_path(path: &str, web: &TestFrontend) -> bool {
672
let data = web.get(path).send().unwrap().text().unwrap();
673
let node = kuchiki::parse_html().one(data);
674
+ for n in node.select(".pure-menu-heading").unwrap() {
675
+ dbg!("==> {:?}", n.text_contents());
676
+ }
677
node.select(".pure-menu-heading")
678
.unwrap()
679
.any(|e| e.text_contents().contains("Coverage"))
0 commit comments