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