Skip to content

Commit 9495a0a

Browse files
committed
MQE-787: Cannot run mftf test if useCaseId is used
- useCaseId annotations no longer output in test PHP due to lack fo Allure implementation.
1 parent c29f446 commit 9495a0a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Magento/FunctionalTestingFramework/Util/TestGenerator.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,10 @@ private function generateAnnotationsPhp($annotationsObject, $isMethod = false)
260260
$annotationsPhp = "{$indent}/**\n";
261261

262262
foreach ($annotationsObject as $annotationType => $annotationName) {
263+
//Remove conditional and output useCaseId upon completion of MQE-588
264+
if ($annotationType == "useCaseId") {
265+
continue;
266+
}
263267
if (!$isMethod) {
264268
$annotationsPhp.= $this->generateClassAnnotations($annotationType, $annotationName);
265269
} else {

0 commit comments

Comments
 (0)