Files
barker/bookie/src/app/sales/quantity/quantity.component.spec.ts
tanshu d677cfb1ea Blacked and isorted the python files
Prettied and eslinted the typescript/html files
2020-10-11 10:56:29 +05:30

25 lines
636 B
TypeScript

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