Add Integrations hub for Woo marketing and shipping extensions.

Surface Google, Pinterest, Snapchat, and shipping status from the WordPress plugin with deep links to finish setup in WooCommerce.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-08 07:10:06 +00:00
co-authored by Cursor
parent 60673c9adf
commit 5a0022af72
10 changed files with 384 additions and 4 deletions
+4 -4
View File
@@ -32,7 +32,7 @@ class WooMobileNavTest extends TestCase
->assertSee('>Profile</span>', false);
}
public function test_desktop_store_switcher_renders_after_search_form(): void
public function test_desktop_store_switcher_renders_before_afia(): void
{
$user = User::factory()->create();
WooStore::create([
@@ -48,11 +48,11 @@ class WooMobileNavTest extends TestCase
->assertOk()
->getContent();
$searchPos = strpos($html, 'Search orders…');
$switcherPos = strpos($html, 'Example Shop');
$afiaPos = strpos($html, 'afia');
$this->assertNotFalse($searchPos);
$this->assertNotFalse($switcherPos);
$this->assertLessThan($switcherPos, $searchPos);
$this->assertNotFalse($afiaPos);
$this->assertLessThan($afiaPos, $switcherPos);
}
}