Skip to content
This repository has been archived by the owner on Jun 25, 2022. It is now read-only.

Commit

Permalink
test(front-end): Fix InvoiceDetail tests
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlosPavajeau committed Feb 1, 2021
1 parent b441f86 commit 785b31b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,19 @@
</span>
</div>
</div>
</div>
<div class="pt-3">
<div class="icon-text-container">
<mat-icon [matTooltip]="'Cliente'">person</mat-icon>
<span>
<div class="pt-3">
<div class="icon-text-container">
<mat-icon [matTooltip]="'Cliente'">person</mat-icon>
<span>
{{ invoice.client?.id }},
{{ invoice.client?.firstName }}
{{ invoice.client?.secondName }}
{{ invoice.client?.lastName }}
{{ invoice.client?.secondLastName }},
{{ invoice.client?.tradeName }}
{{ invoice.client?.firstName }}
{{ invoice.client?.secondName }}
{{ invoice.client?.lastName }}
{{ invoice.client?.secondLastName }},
{{ invoice.client?.tradeName }}
</span>
</div>
</div>
</div>


Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { SharedModule } from "@shared/shared.module";

import { InvoiceDetailComponent } from './invoice-detail.component';

Expand All @@ -8,9 +9,10 @@ describe('InvoiceDetailComponent', () => {

beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [ SharedModule ],
declarations: [ InvoiceDetailComponent ]
})
.compileComponents();
.compileComponents();
});

beforeEach(() => {
Expand Down

0 comments on commit 785b31b

Please sign in to comment.