mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 01:17:30 -05: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);
 | 
						|
    }
 | 
						|
 | 
						|
}
 |