seed(); $this->post('/admin/login', [ 'email' => 'platform.admin@demo.local', 'password' => 'Platform@123456', ])->assertRedirect('/admin'); } public function test_platform_orders_tools_paid_no_receipt_footnote_should_have_aria_label(): void { $this->loginAsPlatformAdmin(); $res = $this->get('/admin/platform-orders?syncable_only=1&receipt_status=none'); $res->assertOk(); $html = (string) $res->getContent(); $this->assertStringContainsString('data-role="po-tools-paid-no-receipt-footnote" aria-label="已付无回执治理优先级说明"', $html); } }