diff --git a/tests/Feature/AdminPlatformOrderSummaryJumpNoteShouldKeepTitleTest.php b/tests/Feature/AdminPlatformOrderSummaryJumpNoteShouldKeepTitleTest.php new file mode 100644 index 0000000..df55d63 --- /dev/null +++ b/tests/Feature/AdminPlatformOrderSummaryJumpNoteShouldKeepTitleTest.php @@ -0,0 +1,33 @@ +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_title(): void + { + $this->loginAsPlatformAdmin(); + + $res = $this->get('/admin/platform-orders'); + $res->assertOk(); + + $html = (string) $res->getContent(); + $this->assertStringContainsString('data-role="po-summary-jump-note"', $html); + $this->assertStringContainsString('title="摘要导航仅用于快速定位摘要卡,不会改变筛选状态"', $html); + } +}