Files
saasshop/tests/Feature/AdminPlatformOrderSummaryJumpLinksShouldHaveVisiblePrefixTest.php
2026-03-19 19:31:19 +08:00

34 lines
910 B
PHP

<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderSummaryJumpLinksShouldHaveVisiblePrefixTest extends TestCase
{
use RefreshDatabase;
protected function loginAsPlatformAdmin(): void
{
$this->seed();
$this->post('/admin/login', [
'email' => 'platform.admin@demo.local',
'password' => 'Platform@123456',
])->assertRedirect('/admin');
}
public function test_platform_order_summary_jump_links_should_have_visible_prefix(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertStringContainsString('data-role="po-summary-jump-prefix"', $html);
$this->assertStringContainsString('摘要导航:', $html);
}
}