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

File "RegistrationTest.php"

Full Path: /home/u743136113/domains/arvi.seezify.com/public_html/vendor/laravel/breeze/stubs/default/pest-tests/Feature/Auth/RegistrationTest.php
File size: 500 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

test('registration screen can be rendered', function () {
    $response = $this->get('/register');

    $response->assertStatus(200);
});

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->assertRedirect(route('dashboard', absolute: false));
});