Tests: Removing th ecredit card

This commit is contained in:
Benjamin Beganović 2021-08-18 17:59:31 +02:00
parent aaf84e0e3b
commit 7cf209e87a

View File

@ -92,4 +92,17 @@ class CreditCardTest extends DuskTestCase
->waitForText('Details of the payment', 60);
});
}
public function testRemoveCreditCard()
{
$this->browse(function (Browser $browser) {
$browser
->visitRoute('client.payment_methods.index')
->clickLink('View')
->press('Remove Payment Method')
->waitForText('Confirmation')
->click('@confirm-payment-removal')
->assertSee('Payment method has been successfully removed.');
});
}
}