mirror of
https://github.com/brufdev/many-notes.git
synced 2026-01-29 06:18:35 -06:00
10 lines
166 B
PHP
10 lines
166 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
it('returns a successful response', function (): void {
|
|
$response = $this->get('/login');
|
|
|
|
$response->assertStatus(200);
|
|
});
|