Files
saasshop/tests/Feature/AdminPlatformOrderSummaryJumpNoteShouldKeepAllBackTargetsTest.php
2026-03-19 23:51:13 +08:00

33 lines
1.0 KiB
PHP

<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderSummaryJumpNoteShouldKeepAllBackTargetsTest 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_keep_all_back_targets(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertMatchesRegularExpression('/po-summary-jump-back-to-top[\s\S]*?回到顶部[\s\S]*?po-summary-jump-back-to-summary-cards[\s\S]*?回到摘要区[\s\S]*?po-summary-jump-back-to-filters[\s\S]*?回到筛选条件[\s\S]*?po-summary-jump-back-to-tools[\s\S]*?回到工具区/u', $html);
}
}