Skip to content

Commit 3d9a92f

Browse files
committed
#57: Debug flag exists in robo generate:tests to print action sequence of test steps
1 parent 5f3438c commit 3d9a92f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/Magento/FunctionalTestingFramework/Util/TestGenerator.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,12 @@ public function createAllTestFiles($runConfig = null, $nodes = null, $debug = fa
150150
}
151151

152152
// create our manifest file here
153-
$testManifest = TestManifestFactory::makeManifest($this->exportDirectory, $runConfig);
154-
$testPhpArray = $this->assembleAllTestPhp($testManifest, $nodes, $debug);
153+
$testManifest = TestManifestFactory::makeManifest(
154+
dirname($this->exportDirectory),
155+
$this->exportDirectory,
156+
$runConfig
157+
);
158+
$testPhpArray = $this->assembleAllTestPhp($testManifest, $nodes);
155159

156160
foreach ($testPhpArray as $testPhpFile) {
157161
$this->createCestFile($testPhpFile[1], $testPhpFile[0]);

0 commit comments

Comments
 (0)