You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MQE-841: robo generate:tests --force should not require MAGENTO_BASE_URL
- using --force no longers required MAGENTO_BASE_URL to be defined
- assertion action warning now only happens at generate_tests time (verification tests should be a lot more concise now)
echo("WARNING: Use of one line Assertion actions will be deprecated in MFTF 3.0.0, please use nested syntax (Action: {$this->type} StepKey: {$this->stepKey})" . PHP_EOL);
230
+
if ($GLOBALS['GENERATE_TESTS'] ?? false == true) {
231
+
echo("WARNING: Use of one line Assertion actions will be deprecated in MFTF 3.0.0, please use nested syntax (Action: {$this->type} StepKey: {$this->stepKey})" . PHP_EOL);
232
+
}
231
233
// @codingStandardsIgnoreEnd
232
234
return;
233
235
}
@@ -239,6 +241,29 @@ public function trimAssertionAttributes()
0 commit comments