cypress-8.x-1.x-dev/src/TestSite/CypressTestSetup.php
src/TestSite/CypressTestSetup.php
<?php
namespace Drupal\cypress\TestSite;
use Drupal\TestSite\TestSetupInterface;
class CypressTestSetup implements TestSetupInterface {
/**
* {@inheritdoc}
*
* @return void
*/
public function setup() {
/** @var \Drupal\Core\Extension\ModuleInstallerInterface $moduleInstaller */
$moduleInstaller = \Drupal::service('module_installer');
$moduleInstaller->install(['cypress']);
}
}
