File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
src/Magento/FunctionalTestingFramework/Config/Reader Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -42,8 +42,9 @@ BROWSER=chrome
4242MODULE_WHITELIST = Magento_Framework,Magento_ConfigurableProductWishlist,Magento_ConfigurableProductCatalogSearch
4343# CUSTOM_MODULE_PATHS=
4444
45- # *** Bool property which allows the user to toggle debug output during test execution
45+ # *** Bool properties which allows the user to toggle debug output during test execution
4646# MFTF_DEBUG=
47+ # MFTF_FAST_DEBUG=
4748
4849# *** Default timeout for wait actions
4950# WAIT_TIMEOUT=10
Original file line number Diff line number Diff line change 66
77namespace Magento \FunctionalTestingFramework \Config \Reader ;
88
9+ use Magento \AdminNotification \Block \Inbox ;
910use Magento \FunctionalTestingFramework \Config \MftfApplicationConfig ;
1011use Magento \FunctionalTestingFramework \Exceptions \Collector \ExceptionCollector ;
1112use Magento \FunctionalTestingFramework \Util \Iterator \File ;
@@ -51,7 +52,8 @@ public function readFiles($fileList)
5152 if ($ fileList ->valid ()) {
5253 $ this ->validateSchema ($ configMerger , $ fileList ->getFilename ());
5354 }
54- if (MftfApplicationConfig::getConfig ()->fastDebugEnabled ()) {
55+ if (MftfApplicationConfig::getConfig ()->fastDebugEnabled () &&
56+ !MftfApplicationConfig::getConfig ()->debugEnabled ()) {
5557 $ this ->validateSchema ($ configMerger );
5658 }
5759
You can’t perform that action at this time.
0 commit comments