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 8774ac6 + 9cd8891 commit 245e116Copy full SHA for 245e116
src/Magento/FunctionalTestingFramework/Extension/TestContextExtension.php
@@ -182,7 +182,7 @@ public function beforeStep(\Codeception\Event\StepEvent $e)
182
public function afterStep(\Codeception\Event\StepEvent $e)
183
{
184
$browserLog = $this->getDriver()->webDriver->manage()->getLog("browser");
185
- if (getenv('ENABLE_BROWSER_LOG')) {
+ if (getenv('ENABLE_BROWSER_LOG') === 'true') {
186
foreach (explode(',', getenv('BROWSER_LOG_BLACKLIST')) as $source) {
187
$browserLog = BrowserLogUtil::filterLogsOfType($browserLog, $source);
188
}
0 commit comments