Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
duncanmcclean committed Dec 18, 2024
1 parent fd47fc1 commit 84f8163
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ abstract class TestCase extends AddonTestCase
{
protected string $addonServiceProvider = ServiceProvider::class;

public function setUp(): void
{
parent::setUp();

$this->withoutExceptionHandling();
}

protected function getEnvironmentSetUp($app)
{
parent::getEnvironmentSetUp($app);
Expand All @@ -27,8 +34,6 @@ protected function getEnvironmentSetUp($app)
]);

$app['config']->set('queue.batching.database', 'testing');

$this->withoutExceptionHandling();
}

protected function setSites($sites): void
Expand Down

0 comments on commit 84f8163

Please sign in to comment.