Fixes for tests

This commit is contained in:
Benjamin Beganović 2021-07-14 14:04:33 +02:00
parent f0aa62100f
commit 34e1854114

View File

@ -12,6 +12,7 @@
namespace Tests\Browser\ClientPortal\Gateways\WePay;
use App\Models\Client;
use App\Models\CompanyGateway;
use Laravel\Dusk\Browser;
use Tests\Browser\Pages\ClientPortal\Login;
@ -36,6 +37,8 @@ class CreditCardTest extends DuskTestCase
->visit(new Login())
->auth();
});
Client::first()->update(['postal_code' => 99501]);
}
public function testPayWithNewCard()