Skip to content

Commit 017b649

Browse files
committed
first
1 parent f238b77 commit 017b649

File tree

9 files changed

+18
-434
lines changed

9 files changed

+18
-434
lines changed

tests/Feature/Auth/AuthenticationTest.php

Lines changed: 0 additions & 54 deletions
This file was deleted.

tests/Feature/Auth/EmailVerificationTest.php

Lines changed: 0 additions & 58 deletions
This file was deleted.

tests/Feature/Auth/PasswordConfirmationTest.php

Lines changed: 0 additions & 44 deletions
This file was deleted.

tests/Feature/Auth/PasswordResetTest.php

Lines changed: 0 additions & 73 deletions
This file was deleted.

tests/Feature/Auth/RegistrationTest.php

Lines changed: 0 additions & 31 deletions
This file was deleted.

tests/Feature/DashboardTest.php

Lines changed: 0 additions & 24 deletions
This file was deleted.

tests/Feature/ExampleTest.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
3+
namespace Tests\Feature;
4+
5+
use Illuminate\Foundation\Testing\RefreshDatabase;
6+
use Tests\TestCase;
7+
8+
class ExampleTest extends TestCase
9+
{
10+
use RefreshDatabase;
11+
12+
public function test_returns_a_successful_response()
13+
{
14+
$response = $this->get('/');
15+
16+
$response->assertStatus(200);
17+
}
18+
}

tests/Feature/Settings/PasswordUpdateTest.php

Lines changed: 0 additions & 51 deletions
This file was deleted.

0 commit comments

Comments
 (0)