diff --git a/tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepReceiptHasAndPaidNoReceiptPairTest.php b/tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepReceiptHasAndPaidNoReceiptPairTest.php new file mode 100644 index 0000000..90ae9aa --- /dev/null +++ b/tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepReceiptHasAndPaidNoReceiptPairTest.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_receipt_has_and_paid_no_receipt_pair(): void + { + $this->loginAsPlatformAdmin(); + + $res = $this->get('/admin/platform-orders'); + $res->assertOk(); + + $html = (string) $res->getContent(); + $this->assertMatchesRegularExpression('/po-quickfilter-receipt-has[\s\S]*?有回执[\s\S]*?po-quickfilter-paid-no-receipt[\s\S]*?已付无回执/u', $html); + } +}