Skip to content

Commit

Permalink
Disable local disk file serving to fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bakerkretzmar committed Feb 27, 2025
1 parent aabf755 commit 471c5d6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 1 addition & 4 deletions tests/Pest.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,4 @@
|
*/

function something()
{
// ..
}
//
5 changes: 5 additions & 0 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,9 @@ protected function getPackageProviders($app)
{
return [ZiggyServiceProvider::class];
}

protected function defineEnvironment($app)
{
$app->config->set('filesystems.disks.local.serve', false);
}
}

0 comments on commit 471c5d6

Please sign in to comment.