We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6eb3ab commit daf51e0Copy full SHA for daf51e0
src/Magento/FunctionalTestingFramework/Allure/Adapter/MagentoAllureAdapter.php
@@ -132,7 +132,9 @@ public function stepBefore(StepEvent $stepEvent)
132
}
133
134
// DO NOT alter action if actionGroup is starting, need the exact actionGroup name for good logging
135
- if (strpos($stepEvent->getStep()->getAction(), ActionGroupObject::ACTION_GROUP_CONTEXT_START) !== false) {
+ if (strpos($stepEvent->getStep()->getAction(), ActionGroupObject::ACTION_GROUP_CONTEXT_START) !== false
136
+ || $stepEvent->getStep() instanceof Comment
137
+ ) {
138
$stepAction = $stepEvent->getStep()->getAction();
139
} else {
140
$stepAction = $stepEvent->getStep()->getHumanizedActionWithoutArguments();
0 commit comments