AspireCloud/tests/Pest.php

16 lines
383 B
PHP

<?php
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Facades\Http;
use Illuminate\Support\Facades\Storage;
use Tests\TestCase;
pest()
->extend(TestCase::class)
->use(RefreshDatabase::class)
->beforeEach(function () {
Storage::fake('s3');
Http::preventStrayRequests();
$this->withoutVite();
})
->in('Feature');