Skip to content

Commit b418914

Browse files
committed
MQE-2040: Unable to run suites from standalone MFTF
Included suite php files to standalone_bootstrap
1 parent f6bbe8c commit b418914

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

dev/tests/functional/standalone_bootstrap.php

+6
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,9 @@
7474
if (!(bool)$debug_mode && extension_loaded('xdebug')) {
7575
xdebug_disable();
7676
}
77+
78+
// include suite php files
79+
$groupPath = PROJECT_ROOT . '/src/Magento/FunctionalTestingFramework/Group';
80+
foreach (glob($groupPath. '/*.php') as $suitePhpFile) {
81+
include_once $suitePhpFile;
82+
}

0 commit comments

Comments
 (0)