title

Function title 

Source
pub fn title(name: impl Into<String>)
Expand description

Sets a custom title for the current test.

This overrides the test name displayed in the Allure report.

ยงExample

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

with_test_context(|| {
    title("User can login with valid credentials");
});