Gateways: WePay: Credit card: Removing credit card

This commit is contained in:
Benjamin Beganović 2021-07-12 13:35:22 +02:00
parent 4a70d74354
commit 59c4ec63cc

View File

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