use html_parser::{Dom, Result}; use insta::assert_json_snapshot; #[test] fn it_can_parse_document_with_just_one_comment() -> Result<()> { let html = ""; let ast = Dom::parse(html)?; assert_json_snapshot!(ast); Ok(()) } #[test] fn it_can_parse_document_with_just_comments() -> Result<()> { let html = ""; let ast = Dom::parse(html)?; assert_json_snapshot!(ast); Ok(()) }