1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/tests/Browser/Client/PaymentMethods.php
David Bomba 43e57d0117
Fixes for self-update (#3514)
* minor fix for payment notifications

* styleci

* Limit Self updating to self hosters only
:

* Fixes for designs

* Minor fixes for self-update
2020-03-21 16:37:30 +11:00

33 lines
979 B
PHP

<?php
namespace Tests\Browser\Client;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Laravel\Dusk\Browser;
use Tests\DuskTestCase;
class PaymentMethods extends DuskTestCase
{
public function testAddPaymentMethodPage(): void
{
$this->browse(function (Browser $browser) {
$browser->visit('/client/login')
->type('email', 'user@example.com')
->type('password', config('ninja.testvars.password'))
->press('Login')
->assertPathIs('/client/dashboard');
$browser->visit(route('client.payment_methods.index'))
->waitFor('.dataTable')
->waitFor('.dataTables_empty')
->assertSee('No records found');
// TODO: Testing Stripe <iframe>
$browser->visit(route('client.payment_methods.create'))
->assertSee('Add Payment Method')
->assertSee('Save');
});
}
}