10 lines
190 B
PHP
Executable File
10 lines
190 B
PHP
Executable File
<?php
|
|
|
|
class PluginActivatedCest {
|
|
public function seePluginActivated( AcceptanceTester $I ) {
|
|
$I->loginAsAdmin();
|
|
$I->amOnPluginsPage();
|
|
$I->seePluginActivated( 'wp-graphql' );
|
|
}
|
|
}
|