mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
Fix for tests
This commit is contained in:
parent
6a7dcc21a2
commit
da8a2be62e
@ -520,7 +520,7 @@
|
||||
'expenses',
|
||||
'vendors',
|
||||
'settings',
|
||||
'self-update'
|
||||
//'self-update'
|
||||
] as $option)
|
||||
<li class="{{ Request::is("{$option}*") ? 'active' : '' }}">
|
||||
@if ($option == 'settings')
|
||||
|
@ -209,7 +209,7 @@
|
||||
<div class="form-group" style="margin-bottom: 8px">
|
||||
<div class="col-lg-8 col-sm-8 col-sm-offset-4" style="padding-top: 10px">
|
||||
@if ($invoice->recurring_invoice)
|
||||
{!! trans('texts.created_by_invoice', ['invoice' => link_to('/invoices/'.$invoice->recurring_invoice->public_id, trans('texts.recurring_invoice'))]) !!}
|
||||
{!! trans('texts.created_by_invoice', ['invoice' => link_to('/invoices/'.$invoice->recurring_invoice->public_id, trans('texts.recurring_invoice'), ['id' => 'recurringInvoiceLink'])]) !!}
|
||||
@elseif ($invoice->id)
|
||||
<span class="smaller">
|
||||
@if (isset($lastSent) && $lastSent)
|
||||
|
@ -102,7 +102,7 @@ class InvoiceCest
|
||||
$I->see($clientEmail);
|
||||
|
||||
$invoiceNumber = $I->grabAttributeFrom('#invoice_number', 'value');
|
||||
$I->click('Recurring Invoice');
|
||||
$I->click('#recurringInvoiceLink');
|
||||
$I->see($clientEmail);
|
||||
|
||||
$I->click('#lastSent');
|
||||
|
Loading…
Reference in New Issue
Block a user