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 cbea9f1 commit 354352bCopy full SHA for 354352b
tests/acceptance.suite.yml
@@ -8,3 +8,4 @@ modules:
8
url: 'http://wp-php-console.test'
9
adminUsername: 'admin'
10
adminPassword: 'password'
11
+ adminPath: '/wp-admin'
tests/acceptance/AdminTestCest.php
@@ -5,12 +5,14 @@ class AdminTestCest {
5
6
public function TestPluginActivationDeactivation( AcceptanceTester $I ) {
7
- $I->wantTo( 'See if WP PHP Console is listed in Plugins page' );
+ $I->wantTo( 'See if WP PHP Console is listed in the Plugins page.' );
$I->amOnPluginsPage();
12
$I->seePluginActivated( 'wp-php-console' );
13
14
+ $I->wantTo( 'Deactivate and reactivate WP PHP Console.' );
15
+
16
$I->deactivatePlugin( 'wp-php-console' );
17
$I->activatePlugin( 'wp-php-console' );
18
}
0 commit comments