pub fn feature(name: impl Into<String>)Expand description
Adds a feature label to the current test.
Features represent specific functionality under an epic.
ยงExample
use allure_core::runtime::{with_test_context, feature};
with_test_context(|| {
feature("User Registration");
});