mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +01:00
24 lines
468 B
PHP
24 lines
468 B
PHP
<?php
|
|
|
|
namespace Tests\Browser\ClientPortal\Gateways\GoCardless;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
|
use Laravel\Dusk\Browser;
|
|
use Tests\DuskTestCase;
|
|
|
|
class ACHTest extends DuskTestCase
|
|
{
|
|
/**
|
|
* A Dusk test example.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testExample()
|
|
{
|
|
$this->browse(function (Browser $browser) {
|
|
$browser->visit('/')
|
|
->assertSee('Laravel');
|
|
});
|
|
}
|
|
}
|