mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 09:07:35 -05:00 
			
		
		
		
	* Fixes for Feature and browser tests * Change .env.example variable names, implement hash encoding of db numbers for URIs
		
			
				
	
	
		
			24 lines
		
	
	
		
			453 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			453 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Tests\Browser;
 | 
						|
 | 
						|
use Tests\DuskTestCase;
 | 
						|
use Laravel\Dusk\Browser;
 | 
						|
use Illuminate\Foundation\Testing\DatabaseMigrations;
 | 
						|
 | 
						|
class ExampleTest extends DuskTestCase
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * A basic browser test example.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function testBasicExample()
 | 
						|
    {
 | 
						|
        $this->browse(function (Browser $browser) {
 | 
						|
            $browser->visit('/')
 | 
						|
                    ->assertSee('Account');
 | 
						|
        });
 | 
						|
    }
 | 
						|
}
 |