You are here

public function PluginConfigFormTestBase::testSaveConfigurationPresence in Purge 8.3

Tests save button presence/absence.

File

modules/purge_ui/tests/src/Functional/Form/Config/PluginConfigFormTestBase.php, line 92

Class

PluginConfigFormTestBase
Testbase for purge_ui configuration forms (for plugins).

Namespace

Drupal\Tests\purge_ui\Functional\Form\Config

Code

public function testSaveConfigurationPresence() : void {
  $this
    ->drupalLogin($this->adminUser);
  $this
    ->drupalGet($this
    ->getPath());
  $this
    ->assertActionExists('edit-submit', 'Save configuration');
}