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

27 lines
675 B
TypeScript

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