diff --git a/tests/Feature/AdminPlatformOrderQuickFiltersReceiptRefundGroupShouldContainRefundStatusLinksTest.php b/tests/Feature/AdminPlatformOrderQuickFiltersReceiptRefundGroupShouldContainRefundStatusLinksTest.php new file mode 100644 index 0000000..d3c1b1b --- /dev/null +++ b/tests/Feature/AdminPlatformOrderQuickFiltersReceiptRefundGroupShouldContainRefundStatusLinksTest.php @@ -0,0 +1,32 @@ +seed(); + + $this->post('/admin/login', [ + 'email' => 'platform.admin@demo.local', + 'password' => 'Platform@123456', + ])->assertRedirect('/admin'); + } + + public function test_platform_orders_receipt_refund_group_should_contain_refund_status_links(): void + { + $this->loginAsPlatformAdmin(); + + $res = $this->get('/admin/platform-orders'); + $res->assertOk(); + + $html = (string) $res->getContent(); + $this->assertMatchesRegularExpression('/data-role="po-quickfilter-receipt-refund-group"[\s\S]*?po-quickfilter-partially-refunded[\s\S]*?部分退款[\s\S]*?po-quickfilter-refunded[\s\S]*?已退款/u', $html); + } +}