mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
Minor tests for client portal
This commit is contained in:
parent
3f9bea3f91
commit
8255ffc0cf
@ -8,12 +8,6 @@
|
||||
|
||||
@section('body')
|
||||
|
||||
@if(!$invoice->isApproved() && $client->getSetting('custom_message_unapproved_quote'))
|
||||
@component('portal.ninja2020.components.message')
|
||||
{{ $client->getSetting('custom_message_unapproved_quote') }}
|
||||
@endcomponent
|
||||
@endif
|
||||
|
||||
@if(!$invoice->isPayable() && $client->getSetting('custom_message_paid_invoice'))
|
||||
@component('portal.ninja2020.components.message')
|
||||
{{ $client->getSetting('custom_message_paid_invoice') }}
|
||||
|
@ -23,7 +23,7 @@ use Tests\TestCase;
|
||||
class GroupSettingTest extends TestCase
|
||||
{
|
||||
use MakesHash;
|
||||
use DatabaseTransactions;
|
||||
//use DatabaseTransactions;
|
||||
use MockAccountData;
|
||||
|
||||
public function setUp(): void
|
||||
@ -42,7 +42,7 @@ class GroupSettingTest extends TestCase
|
||||
public function testAddGroupSettings()
|
||||
{
|
||||
$settings = new \stdClass;
|
||||
$settings->currency_id = 1;
|
||||
$settings->currency_id = '1';
|
||||
|
||||
$data = [
|
||||
'name' => 'testX',
|
||||
@ -65,7 +65,7 @@ class GroupSettingTest extends TestCase
|
||||
public function testArchiveGroupSettings()
|
||||
{
|
||||
$settings = new \stdClass;
|
||||
$settings->currency_id = 1;
|
||||
$settings->currency_id = '1';
|
||||
|
||||
$data = [
|
||||
'name' => 'testY',
|
||||
|
Loading…
Reference in New Issue
Block a user