mirror of
https://gh.wpcy.net/https://github.com/fairpm/aspirecloud.git
synced 2026-06-19 02:13:44 +08:00
14 lines
320 B
PHP
14 lines
320 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
use App\Models\User;
|
|
|
|
test('other browser sessions can be logged out', function () {
|
|
$this->actingAs(User::factory()->create());
|
|
|
|
$response = $this->delete('/user/other-browser-sessions', [
|
|
'password' => 'password',
|
|
]);
|
|
|
|
$response->assertSessionHasNoErrors();
|
|
});
|