1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 10:34:04 +00:00
This commit is contained in:
Samuel Štancl 2019-07-30 18:04:05 +02:00
parent d0d1f6930b
commit f7bbf59f0c
3 changed files with 30 additions and 1 deletions

14
tests/TelescopeTest.php Normal file
View file

@ -0,0 +1,14 @@
<?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');
}
}