mirror of
https://github.com/vitodeploy/vito.git
synced 2025-06-30 21:46:16 +00:00
Migrate to HTMX (#114)
Dropped Livewire Added HTMX Added Blade code lint Drop Mysql and Redis Migrate to SQLite
This commit is contained in:
@ -2,10 +2,8 @@
|
||||
|
||||
namespace Tests\Feature;
|
||||
|
||||
use App\Http\Livewire\ServerLogs\LogsList;
|
||||
use App\Models\ServerLog;
|
||||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||
use Livewire\Livewire;
|
||||
use Tests\TestCase;
|
||||
|
||||
class LogsTest extends TestCase
|
||||
@ -22,9 +20,6 @@ public function test_see_logs()
|
||||
]);
|
||||
|
||||
$this->get(route('servers.logs', $this->server))
|
||||
->assertOk();
|
||||
|
||||
Livewire::test(LogsList::class, ['server' => $this->server])
|
||||
->assertSeeText($log->type);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user