We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 053c01f commit fe5e815Copy full SHA for fe5e815
src/Magento/FunctionalTestingFramework/Module/MagentoRestDriver.php
@@ -104,6 +104,11 @@ class MagentoRestDriver extends REST
104
public function _beforeSuite($settings = [])
105
{
106
parent::_beforeSuite($settings);
107
+
108
+ if (empty($this->config['url']) || empty($this->config['username']) || empty($this->config['password'])) {
109
+ return;
110
+ }
111
112
$this->haveHttpHeader('Content-Type', 'application/json');
113
$this->sendPOST(
114
'integration/admin/token',
0 commit comments