mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
27 lines
723 B
PHP
27 lines
723 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Laravel\Jetstream\Http\Livewire\CreateTeamForm;
|
|
use Livewire\Livewire;
|
|
use Tests\TestCase;
|
|
|
|
class CreateTeamTest extends TestCase
|
|
{
|
|
use RefreshDatabase;
|
|
|
|
public function test_teams_can_be_created()
|
|
{
|
|
$this->actingAs($user = User::factory()->withPersonalTeam()->create());
|
|
|
|
Livewire::test(CreateTeamForm::class)
|
|
->set(['state' => ['name' => 'Test Team']])
|
|
->call('createTeam');
|
|
|
|
$this->assertCount(2, $user->fresh()->ownedTeams);
|
|
$this->assertEquals('Test Team', $user->fresh()->ownedTeams()->latest('id')->first()->name);
|
|
}
|
|
}
|