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