Re-add search functionality
This commit is contained in:
parent
92c0a517c2
commit
58c5a7d443
11 changed files with 297 additions and 19 deletions
26
tests/Feature/SearchTest.php
Normal file
26
tests/Feature/SearchTest.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Tests\Feature;
|
||||
|
||||
use App\Models\Note;
|
||||
use Tests\TestCase;
|
||||
|
||||
class SearchTest extends TestCase
|
||||
{
|
||||
/** @test */
|
||||
public function searchEndpointReturnsResults(): void
|
||||
{
|
||||
Note::factory(10)->create();
|
||||
Note::Factory()->create(['note' => 'hello world']);
|
||||
|
||||
$response = $this->get('/search?q=hello');
|
||||
|
||||
$response->assertStatus(200);
|
||||
$response->assertViewIs('search');
|
||||
$response->assertViewHas('search');
|
||||
$response->assertViewHas('notes');
|
||||
$response->assertSee('hello world');
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue