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.
2 parents 20e1c7e + d2eb58a commit ab4ccebCopy full SHA for ab4cceb
src/Magento/FunctionalTestingFramework/Config/MftfApplicationConfig.php
@@ -100,6 +100,12 @@ private function __construct(
100
101
$this->phase = $phase;
102
$this->verboseEnabled = $verboseEnabled;
103
+
104
+ //TODO: overriding pipeline config, to be removed for MFTF 3.0.0
105
+ if (strtolower($debugLevel) === 'none') {
106
+ $debugLevel = self::LEVEL_DEFAULT;
107
+ }
108
109
if (isset($debugLevel) && !in_array(strtolower($debugLevel), self::MFTF_DEBUG_LEVEL)) {
110
throw new TestFrameworkException("{$debugLevel} is not a debug level. Use 'DEFAULT' or 'DEVELOPER'");
111
}
0 commit comments