mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 12:37:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			430 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			430 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Tests\Browser;
 | |
| 
 | |
| use Illuminate\Foundation\Testing\DatabaseTransactions;
 | |
| use Illuminate\Support\Facades\DB;
 | |
| use Tests\DuskTestCase;
 | |
| use Illuminate\Foundation\Testing\WithFaker;
 | |
| use Laravel\Dusk\Browser;
 | |
| 
 | |
| class CreateAccountTest extends DuskTestCase
 | |
| {
 | |
| 
 | |
|     use WithFaker;
 | |
| 
 | |
|     public function testSignupFormDisplayed()
 | |
|     {
 | |
|         $response = $this->get('/signup');
 | |
|         $response->assertStatus(200);
 | |
|     }
 | |
| 
 | |
| }
 |