1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 12:24:04 +00:00
tenancy/tests/TelescopeTest.php
2019-07-30 18:05:50 +02:00

14 lines
246 B
PHP

<?php
namespace Stancl\Tenancy\Tests;
use Illuminate\Support\Facades\Artisan;
class TelescopeTest extends TestCase
{
public function setUp(): void
{
Artisan::call('telescope:install');
Artisan::call('migrate');
}
}