You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 18, 2022. It is now read-only.
I'm writing a rust program which uses tokio for async functions. I wrote some tests for these async functions and need to annotate them with #[tokio:test] instead of #[test].
Because it's another annotation, the extension doesn't recognize it as a test, so the "Run test" text is missing.
Is it possible to add this annotation? It's pretty handy to run only a singe test with this clickable text
Minimal example
#[tokio:test]asyncfntest_example(){let body = reqwest::get("https://www.rust-lang.org").await?
.text().await?;println!("body = {:?}", body);}
sazzer, ypyf, arthurlm, radu-matei, webern and 1 more