补充工具区回摘要概览入口

This commit is contained in:
萝卜
2026-03-19 10:07:10 +08:00
parent abebf57104
commit 0888be7672
2 changed files with 38 additions and 1 deletions

View File

@@ -0,0 +1,36 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderIndexToolGridJumpLinksShouldIncludeSummaryShortcutTest 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_orders_tool_grid_jump_links_should_include_summary_shortcut(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertStringContainsString('data-role="po-summary-cards"', $html);
$this->assertStringContainsString('data-role="po-tools-jump-summary"', $html);
$this->assertStringContainsString('aria-label="定位到订单摘要概览"', $html);
$this->assertStringContainsString('href="#po-summary-cards"', $html);
$this->assertStringContainsString('>摘要概览<', $html);
}
}