rouge8 / neotest-rust

Neotest adapter for Rust, using cargo-nextest.
MIT License
91 stars 27 forks source link

Tests are not detected if comment exists after #[test] attribute #37

Closed MunifTanjim closed 1 year ago

MunifTanjim commented 1 year ago
#[test]
/// a word
fn test_a_word() {
    process_reverse_case("robot", "tobor");
}