You are here

SiteInstallSetupScript.php in Responsive and off-canvas menu 4.1.x

Namespace

Drupal\TestSite

File

tests/src/Nightwatch/SiteInstallSetupScript.php
View source
<?php

namespace Drupal\TestSite;


/**
 * Setup file used by responsive_menu module Nightwatch tests.
 */
class SiteInstallSetupScript implements TestSetupInterface {

  /**
   * {@inheritdoc}
   */
  public function setup() {
    \Drupal::service('module_installer')
      ->install([
      'responsive_menu_test',
    ]);
  }

}

Classes

Namesort descending Description
SiteInstallSetupScript Setup file used by responsive_menu module Nightwatch tests.