36 lines
		
	
	
		
			888 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			888 B
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| 
 | |
| namespace Tests;
 | |
| 
 | |
| use App\Form\Models\Form;
 | |
| use App\Invoice\Models\Invoice;
 | |
| use App\Member\Member;
 | |
| use Laravel\Scout\Console\FlushCommand;
 | |
| use Laravel\Scout\Console\SyncIndexSettingsCommand;
 | |
| use Illuminate\Foundation\Testing\DatabaseMigrations;
 | |
| use Illuminate\Support\Facades\Artisan;
 | |
| 
 | |
| abstract class EndToEndTestCase extends TestCase
 | |
| {
 | |
|     use DatabaseMigrations;
 | |
| 
 | |
|     protected function setUp(): void
 | |
|     {
 | |
|         parent::setUp();
 | |
| 
 | |
|         $this->useMeilisearch();
 | |
|     }
 | |
| 
 | |
| 
 | |
|     public function useMeilisearch(): self
 | |
|     {
 | |
|         config()->set('scout.driver', 'meilisearch');
 | |
|         Artisan::call(FlushCommand::class, ['model' => Member::class]);
 | |
|         Artisan::call(FlushCommand::class, ['model' => Form::class]);
 | |
|         Artisan::call(FlushCommand::class, ['model' => Invoice::class]);
 | |
|         Artisan::call(SyncIndexSettingsCommand::class);
 | |
| 
 | |
|         return $this;
 | |
|     }
 | |
| }
 |