diff --git a/tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepReconcileMismatchAndRefundInconsistentPairTest.php b/tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepReconcileMismatchAndRefundInconsistentPairTest.php new file mode 100644 index 0000000..f1ab90c --- /dev/null +++ b/tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepReconcileMismatchAndRefundInconsistentPairTest.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_quick_filters_should_keep_reconcile_mismatch_and_refund_inconsistent_pair(): void + { + $this->loginAsPlatformAdmin(); + + $res = $this->get('/admin/platform-orders'); + $res->assertOk(); + + $html = (string) $res->getContent(); + $this->assertMatchesRegularExpression('/po-quickfilter-reconcile-mismatch[\s\S]*?对账不一致[\s\S]*?po-quickfilter-refund-inconsistent[\s\S]*?退款不一致/u', $html); + } +}