diff --git a/tests/Feature/AdminDashboardBillingWorkbenchReconcileMismatchAndRefundInconsistentButtonsShouldHaveDataRoleTest.php b/tests/Feature/AdminDashboardBillingWorkbenchReconcileMismatchAndRefundInconsistentButtonsShouldHaveDataRoleTest.php new file mode 100644 index 0000000..6a75f5c --- /dev/null +++ b/tests/Feature/AdminDashboardBillingWorkbenchReconcileMismatchAndRefundInconsistentButtonsShouldHaveDataRoleTest.php @@ -0,0 +1,34 @@ +seed(); + + $this->post('/admin/login', [ + 'email' => 'platform.admin@demo.local', + 'password' => 'Platform@123456', + ])->assertRedirect('/admin'); + } + + public function test_dashboard_billing_workbench_reconcile_mismatch_and_refund_inconsistent_buttons_should_have_data_role(): void + { + $this->loginAsPlatformAdmin(); + + $res = $this->get('/admin'); + $res->assertOk(); + + $html = (string) $res->getContent(); + + $this->assertStringContainsString('data-role="dashboard-po-quicklink-reconcile-mismatch"', $html); + $this->assertStringContainsString('data-role="dashboard-po-quicklink-refund-inconsistent"', $html); + } +}