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