diff --git a/tests/Feature/AdminPlatformOrderIndexLeadGovernanceQuickLinksExpandedTest.php b/tests/Feature/AdminPlatformOrderIndexLeadGovernanceQuickLinksExpandedTest.php index 4106245..2163009 100644 --- a/tests/Feature/AdminPlatformOrderIndexLeadGovernanceQuickLinksExpandedTest.php +++ b/tests/Feature/AdminPlatformOrderIndexLeadGovernanceQuickLinksExpandedTest.php @@ -44,6 +44,12 @@ class AdminPlatformOrderIndexLeadGovernanceQuickLinksExpandedTest extends TestCa 'status' => 'pending', ]); + $paidNoReceiptUrl = '/admin/platform-orders?' . Arr::query([ + 'lead_id' => $leadId, + 'payment_status' => 'paid', + 'receipt_status' => 'none', + ]); + $bmpaUrl = '/admin/platform-orders?' . Arr::query([ 'lead_id' => $leadId, 'payment_status' => 'unpaid', @@ -62,6 +68,7 @@ class AdminPlatformOrderIndexLeadGovernanceQuickLinksExpandedTest extends TestCa $res->assertSee($unpaidUrl, false); $res->assertSee($paidPendingUrl, false); + $res->assertSee($paidNoReceiptUrl, false); $res->assertSee($bmpaUrl, false); $res->assertSee($syncableUrl, false); $res->assertSee($syncFailedUrl, false); diff --git a/tests/Feature/AdminPlatformOrderIndexSubscriptionGovernanceQuickLinksExpandedTest.php b/tests/Feature/AdminPlatformOrderIndexSubscriptionGovernanceQuickLinksExpandedTest.php index 3904687..7bc5c42 100644 --- a/tests/Feature/AdminPlatformOrderIndexSubscriptionGovernanceQuickLinksExpandedTest.php +++ b/tests/Feature/AdminPlatformOrderIndexSubscriptionGovernanceQuickLinksExpandedTest.php @@ -80,9 +80,16 @@ class AdminPlatformOrderIndexSubscriptionGovernanceQuickLinksExpandedTest extend 'status' => 'pending', ]); + $paidNoReceiptUrl = '/admin/platform-orders?' . Arr::query([ + 'site_subscription_id' => $sub->id, + 'payment_status' => 'paid', + 'receipt_status' => 'none', + ]); + $res->assertSee($syncableUrl, false); $res->assertSee($failedUrl, false); $res->assertSee($unpaidUrl, false); $res->assertSee($paidPendingUrl, false); + $res->assertSee($paidNoReceiptUrl, false); } }