diff --git a/tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepRefundHasAndRefundNonePairTest.php b/tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepRefundHasAndRefundNonePairTest.php new file mode 100644 index 0000000..03ce486 --- /dev/null +++ b/tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepRefundHasAndRefundNonePairTest.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_refund_has_and_refund_none_pair(): void + { + $this->loginAsPlatformAdmin(); + + $res = $this->get('/admin/platform-orders'); + $res->assertOk(); + + $html = (string) $res->getContent(); + $this->assertMatchesRegularExpression('/po-quickfilter-refund-has[\s\S]*?有退款[\s\S]*?po-quickfilter-refund-none[\s\S]*?无退款/u', $html); + } +}