1
0
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:
Hillel Coren 2016-10-05 13:57:59 +03:00
parent 6a7dcc21a2
commit da8a2be62e
3 changed files with 3 additions and 3 deletions

View File

@ -520,7 +520,7 @@
'expenses',
'vendors',
'settings',
'self-update'
//'self-update'
] as $option)
<li class="{{ Request::is("{$option}*") ? 'active' : '' }}">
@if ($option == 'settings')

View File

@ -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)

View File

@ -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');