1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 03:14:04 +00:00
tenancy/tests/TelescopeTest.php
Samuel Štancl 060a4bc525 wip
2019-08-17 22:18:42 +02:00

17 lines
322 B
PHP

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