File "UpdateTeamNameTest.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/laravel/jetstream/stubs/pest-tests/inertia/UpdateTeamNameTest.php
File size: 386 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
use App\Models\User;
test('team names can be updated', function () {
$this->actingAs($user = User::factory()->withPersonalTeam()->create());
$response = $this->put('/teams/'.$user->currentTeam->id, [
'name' => 'Test Team',
]);
expect($user->fresh()->ownedTeams)->toHaveCount(1);
expect($user->currentTeam->fresh()->name)->toEqual('Test Team');
});