JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "RegistrationTest.php"

Full Path: /home/u735268861/domains/palsarh.in/public_html/vendor/laravel/breeze/stubs/api/pest-tests/Feature/Auth/RegistrationTest.php
File size: 327 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

test('new users can register', function () {
    $response = $this->post('/register', [
        'name' => 'Test User',
        'email' => 'test@example.com',
        'password' => 'password',
        'password_confirmation' => 'password',
    ]);

    $this->assertAuthenticated();
    $response->assertNoContent();
});