D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
www
/
vendor
/
laravel
/
breeze
/
stubs
/
api
/
pest-tests
/
Feature
/
Auth
/
Filename :
AuthenticationTest.php
back
Copy
<?php use App\Models\User; test('users can authenticate using the login screen', function () { $user = User::factory()->create(); $response = $this->post('/login', [ 'email' => $user->email, 'password' => 'password', ]); $this->assertAuthenticated(); $response->assertNoContent(); }); test('users can not authenticate with invalid password', function () { $user = User::factory()->create(); $this->post('/login', [ 'email' => $user->email, 'password' => 'wrong-password', ]); $this->assertGuest(); });