We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb05f68 commit 7897c64Copy full SHA for 7897c64
README.md
@@ -21,6 +21,7 @@ Due to I have another project with Jetstream [Laravel Livewire Publications](htt
21
22
- Refactored some code with best practices
23
- Implemented some design patters: QueryBuilder, Data Transfer Object and Actions
24
+- Implemented a simple API for managing notes
25
26
---
27
tests/Feature/Http/Controllers/Notes/NotesControllerTest.php
@@ -5,11 +5,13 @@
5
use App\Models\User;
6
use App\Models\Note;
7
use Illuminate\Foundation\Testing\RefreshDatabase;
8
+use Illuminate\Foundation\Testing\WithFaker;
9
use Tests\TestCase;
10
11
class NotesControllerTest extends TestCase
12
{
13
use RefreshDatabase;
14
+ use WithFaker;
15
16
private string $url = '/notes';
17
0 commit comments