astute/AstuteClient2/src/app/invoice/invoice.component.spec.ts
Akash Shah 3554518563
Added Astute Client Files
In the AstuteClient2 folder
2018-08-15 14:33:03 -04:00

26 lines
635 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { InvoiceComponent } from './invoice.component';
describe('InvoiceComponent', () => {
let component: InvoiceComponent;
let fixture: ComponentFixture<InvoiceComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ InvoiceComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(InvoiceComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});