addSkipLabel function

void addSkipLabel(
  1. List<AllureLabel> labels
)

Adds the Allure test-plan skip marker to labels.

Implementation

void addSkipLabel(List<AllureLabel> labels) {
  labels.add(const AllureLabel(name: allureTestPlanSkipLabel, value: 'true'));
}