Tests: Setup

This commit is contained in:
Benjamin Beganović 2021-10-04 13:40:48 +02:00
parent 078330e1f0
commit cd3d0efb7a

View File

@ -2,22 +2,29 @@
namespace Tests\Browser\ClientPortal\Gateways\GoCardless;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use App\Models\CompanyGateway;
use Laravel\Dusk\Browser;
use Tests\Browser\Pages\ClientPortal\Login;
use Tests\DuskTestCase;
class ACHTest extends DuskTestCase
{
/**
* A Dusk test example.
*
* @return void
*/
public function testExample()
protected function setUp(): void
{
parent::setUp();
foreach (static::$browsers as $browser) {
$browser->driver->manage()->deleteAllCookies();
}
$this->disableCompanyGateways();
CompanyGateway::where('gateway_key', 'b9886f9257f0c6ee7c302f1c74475f6c')->restore();
$this->browse(function (Browser $browser) {
$browser->visit('/')
->assertSee('Laravel');
$browser
->visit(new Login())
->auth();
});
}
}