1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 00:34:04 +00:00
tenancy/tests/TelescopeTest.php
Samuel Štancl f7bbf59f0c wip
2019-07-30 18:04:05 +02:00

14 lines
249 B
PHP

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