1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 21:52:35 +01:00
invoiceninja/tests/Browser/ClientPortal/Gateways/GoCardless/ACHTest.php
Benjamin Beganović 078330e1f0 Scaffold ACHTest
2021-10-04 13:40:16 +02:00

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');
});
}
}