#[ignore]
#[wstd::test]
async fn should_be_ignored() {}
produces
pub fn should_be_ignored() {
#[ignore]
async fn __run() {
{}
}
::wstd::runtime::block_on(async { __run().await })
}
instead of
#[ignore]
pub fn should_be_ignored() {
async fn __run() {
{}
}
::wstd::runtime::block_on(async { __run().await })
}