protected function WebDriverTestBase::installModulesFromClassProperty in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/FunctionalJavascriptTests/WebDriverTestBase.php \Drupal\FunctionalJavascriptTests\WebDriverTestBase::installModulesFromClassProperty()
Install modules defined by `static::$modules`.
To install test modules outside of the testing environment, add
$settings['extension_discovery_scan_tests'] = TRUE;
to your settings.php.
Parameters
\Symfony\Component\DependencyInjection\ContainerInterface $container: The container.
Overrides FunctionalTestSetupTrait::installModulesFromClassProperty
File
- core/
tests/ Drupal/ FunctionalJavascriptTests/ WebDriverTestBase.php, line 78
Class
- WebDriverTestBase
- Runs a browser test using a driver that supports Javascript.
Namespace
Drupal\FunctionalJavascriptTestsCode
protected function installModulesFromClassProperty(ContainerInterface $container) {
self::$modules = [
'js_deprecation_log_test',
];
if ($this->disableCssAnimations) {
self::$modules[] = 'css_disable_transitions_test';
}
parent::installModulesFromClassProperty($container);
}