diff --git a/tests/Browser/ClientPortal/PaymentsTest.php b/tests/Browser/ClientPortal/PaymentsTest.php new file mode 100644 index 000000000000..cb9bd2bdc43c --- /dev/null +++ b/tests/Browser/ClientPortal/PaymentsTest.php @@ -0,0 +1,30 @@ +driver->manage()->deleteAllCookies(); + } + } + + public function testPageLoads() + { + $this->browse(function (Browser $browser) { + $browser + ->visit(new Login()) + ->auth() + ->visitRoute('client.payments.index') + ->assertSee('Recurring Invoices'); + }); + } +}