diff --git a/config/mailviewer.php b/config/mailviewer.php index 5d65f68..3083126 100644 --- a/config/mailviewer.php +++ b/config/mailviewer.php @@ -21,8 +21,8 @@ | URL where you want to view the mails |-------------------------------------------------------------------------- | - | This is the URL where you can view all the mailables - | registered in your application. + | This is the URL where you can view all the + | mailables registered above. | */ diff --git a/tests/MailViewerTest.php b/tests/MailViewerTest.php index 3eccc3b..7eea5ba 100644 --- a/tests/MailViewerTest.php +++ b/tests/MailViewerTest.php @@ -27,8 +27,6 @@ public function setUp() /** @test */ public function it_lists_all_the_mailables_on_the_url_configured_in_config_file() { - $this->withoutExceptionHandling(); - $this->get($this->packageUrl) ->assertSee('All Mails') ->assertSee('TestEmailForMailViewer'); @@ -37,8 +35,6 @@ public function it_lists_all_the_mailables_on_the_url_configured_in_config_file( /** @test */ public function it_renders_the_mailable_on_its_dedicated_route() { - $this->withoutExceptionHandling(); - $this->get(route('mv-mailviewer', 'TestEmailForMailViewer')) ->assertSee('The test email view'); }