17 lines
		
	
	
		
			335 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			335 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Tests\Feature\Common;
 | |
| 
 | |
| use Tests\Feature\FeatureTestCase;
 | |
| 
 | |
| class DashboardTest extends FeatureTestCase
 | |
| {
 | |
|     public function testItShouldSeeDashboard()
 | |
|     {
 | |
|         $this->loginAs()
 | |
|             ->get(route('dashboard'))
 | |
|             ->assertStatus(200)
 | |
|             ->assertSeeText(trans('general.dashboard'));
 | |
|     }
 | |
| }
 |