Skip to content

#[ignore] applied to #[wstd::test] is ignored #111

@tomasol

Description

@tomasol
#[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 })
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions