Gateways: Braintree: Credit card: Remove credit card

This commit is contained in:
Benjamin Beganović 2021-07-09 16:01:29 +02:00
parent f4b7f4b85c
commit f354da50a1

View File

@ -100,4 +100,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.');
});
}
}