hasSkipLabel function
Whether labels contain the Allure test-plan skip marker.
Implementation
bool hasSkipLabel(Iterable<AllureLabel> labels) {
return labels.any((label) => label.name == allureTestPlanSkipLabel);
}
Whether labels contain the Allure test-plan skip marker.
bool hasSkipLabel(Iterable<AllureLabel> labels) {
return labels.any((label) => label.name == allureTestPlanSkipLabel);
}