mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
13 lines
263 B
PHP
13 lines
263 B
PHP
<?php
|
|
|
|
use Illuminate\Contracts\Auth\Authenticatable;
|
|
use Tests\TestCase;
|
|
|
|
/**
|
|
* Set the currently logged in user for the application.
|
|
*/
|
|
function actingAs(Authenticatable $user, string $driver = null): TestCase
|
|
{
|
|
return test()->actingAs($user, $driver);
|
|
}
|