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