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:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user