Files
barker/bookie/src/app/bill-settlement-report/bill-settlement-report.component.spec.ts
tanshu 6567f560ab Updated to angular 11
Now compiling with strict mode in typescript
Need to error checking now
2020-11-22 10:13:37 +05:30

27 lines
753 B
TypeScript

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