muted

Function muted 

Source
pub fn muted()
Expand description

Marks the current test as muted.

Muted tests are tests whose results will not affect the statistics in the Allure report. The test is still executed and documented, but won’t impact pass/fail metrics.

§Example

use allure_core::runtime::{with_test_context, muted};

with_test_context(|| {
    muted();
    // Test code that shouldn't affect statistics
});