Uses LazilyRefreshDatabase by default (#5696)

This commit is contained in:
Nuno Maduro
2021-09-29 08:20:24 -05:00
committed by GitHub
parent ef9d0e4c78
commit 4578193d52
3 changed files with 3 additions and 3 deletions
-1
View File
@@ -2,7 +2,6 @@
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
+2 -1
View File
@@ -2,9 +2,10 @@
namespace Tests;
use Illuminate\Foundation\Testing\LazilyRefreshDatabase;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
use CreatesApplication, LazilyRefreshDatabase;
}