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
42
42
MODULE_WHITELIST = Magento_Framework,Magento_ConfigurableProductWishlist,Magento_ConfigurableProductCatalogSearch
43
43
# CUSTOM_MODULE_PATHS=
44
44
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
46
46
# MFTF_DEBUG=
47
+ # MFTF_FAST_DEBUG=
47
48
48
49
# *** Default timeout for wait actions
49
50
# WAIT_TIMEOUT=10
Original file line number Diff line number Diff line change 6
6
7
7
namespace Magento \FunctionalTestingFramework \Config \Reader ;
8
8
9
+ use Magento \AdminNotification \Block \Inbox ;
9
10
use Magento \FunctionalTestingFramework \Config \MftfApplicationConfig ;
10
11
use Magento \FunctionalTestingFramework \Exceptions \Collector \ExceptionCollector ;
11
12
use Magento \FunctionalTestingFramework \Util \Iterator \File ;
@@ -51,7 +52,8 @@ public function readFiles($fileList)
51
52
if ($ fileList ->valid ()) {
52
53
$ this ->validateSchema ($ configMerger , $ fileList ->getFilename ());
53
54
}
54
- if (MftfApplicationConfig::getConfig ()->fastDebugEnabled ()) {
55
+ if (MftfApplicationConfig::getConfig ()->fastDebugEnabled () &&
56
+ !MftfApplicationConfig::getConfig ()->debugEnabled ()) {
55
57
$ this ->validateSchema ($ configMerger );
56
58
}
57
59
You can’t perform that action at this time.
0 commit comments