hasSkipLabel function

bool hasSkipLabel(
  1. Iterable<AllureLabel> labels
)

Whether labels contain the Allure test-plan skip marker.

Implementation

bool hasSkipLabel(Iterable<AllureLabel> labels) {
  return labels.any((label) => label.name == allureTestPlanSkipLabel);
}