barker/bookie/src/app/sales/bill-number/bill-number.component.spec.ts

27 lines
680 B
TypeScript

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