label

Function label 

Source
pub fn label(name: impl Into<String>, value: impl Into<String>)
Expand description

Adds a label to the current test.

ยงExample

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

with_test_context(|| {
    label("environment", "staging");
    label("browser", "chrome");
});