mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-08 22:34:31 -04:00
Gateways: Stripe: ACH: Paying with existing ACH account
This commit is contained in:
parent
1ec2630c6c
commit
38c7e84b21
@ -71,4 +71,18 @@ class ACHTest extends DuskTestCase
|
|||||||
->assertSee('Bank Transfer');
|
->assertSee('Bank Transfer');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testPayingWithExistingACH()
|
||||||
|
{
|
||||||
|
$this->browse(function (Browser $browser) {
|
||||||
|
$browser
|
||||||
|
->visitRoute('client.invoices.index')
|
||||||
|
->click('@pay-now')
|
||||||
|
->press('Pay Now')
|
||||||
|
->clickLink('Bank Transfer')
|
||||||
|
->click('.toggle-payment-with-token')
|
||||||
|
->press('Pay Now')
|
||||||
|
->waitForText('Details of the payment', 60);
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user