We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20b044e commit 92d91e5Copy full SHA for 92d91e5
tests/acceptance/AdminTestCest.php
@@ -7,16 +7,17 @@ public function TestPluginActivationDeactivation( AcceptanceTester $I ) {
7
8
$I->wantTo( 'See if WP PHP Console is listed in the Plugins page.' );
9
10
+ $I->loginAsAdmin();
11
$I->amOnPluginsPage();
12
- $I->seePluginActivated( 'hello-dolly' );
13
-
14
- $I->seePluginDeactivated( 'wp-php-console' );
+ $I->seePluginInstalled( 'wp-php-console' );
15
16
$I->wantTo( 'Deactivate and reactivate WP PHP Console.' );
17
18
- //$I->deactivatePlugin( 'wp-php-console' );
+ $I->deactivatePlugin( 'wp-php-console' );
+ $I->seePluginDeactivated( 'wp-php-console' );
19
$I->activatePlugin( 'wp-php-console' );
20
+ $I->seePluginActivated( 'wp-php-console' );
21
}
22
23
0 commit comments