Skip to content

Commit

Permalink
update plugin slug for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
circlecube committed Aug 2, 2024
2 parents c58f06f + bd67b3b commit 94046aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cypress.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = defineConfig({
phpVersion,
pluginId: 'mojo',
appId: 'wppm',
pluginSlug: 'wp-plugin-mojo',
pluginSlug: 'mojo',
},
downloadsFolder: 'tests/cypress/downloads',
fixturesFolder: 'tests/cypress/fixtures',
Expand Down
3 changes: 2 additions & 1 deletion inc/Admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ public function __construct() {
/* Load Page Scripts & Styles. */
\add_action( 'load-toplevel_page_mojo', array( __CLASS__, 'assets' ) );
/* Add Links to WordPress Plugins list item. */
\add_filter( 'plugin_action_links_wp-plugin-mojo/wp-plugin-mojo.php', array( __CLASS__, 'actions' ) );
\add_filter( 'plugin_action_links_mojo-marketplace-wp-plugin/mojo-marketplace.php', array( __CLASS__, 'actions' ) );
\add_filter( 'plugin_action_links_wp-plugin-mojo/mojo-marketplace.php', array( __CLASS__, 'actions' ) );
/* Add inline style to hide subnav link */
\add_action( 'admin_head', array( __CLASS__, 'admin_nav_style' ) );
/* Add runtime for data store */
Expand Down

0 comments on commit 94046aa

Please sign in to comment.