Files
saasshop/tests/Feature/AdminPlatformOrderSummaryJumpNoteShouldLinkBackToToolsTest.php
2026-03-19 22:07:18 +08:00

36 lines
1.1 KiB
PHP

<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderSummaryJumpNoteShouldLinkBackToToolsTest 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_note_should_link_back_to_tools(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertStringContainsString('data-role="po-summary-jump-back-to-tools"', $html);
$this->assertStringContainsString('href="#po-tools-grid"', $html);
$this->assertStringContainsString('aria-label="回到工具区"', $html);
$this->assertStringContainsString('title="回到工具区执行导出或批量动作"', $html);
}
}