mirror of
https://codeberg.org/JasterV/social-network-api.git
synced 2026-04-26 18:10:07 +00:00
18 lines
392 B
PHP
18 lines
392 B
PHP
<?php
|
|
|
|
namespace Tests;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
|
|
abstract class TestCase extends BaseTestCase
|
|
{
|
|
use CreatesApplication, DatabaseMigrations;
|
|
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
Artisan::call('passport:install');
|
|
}
|
|
}
|