barker/bookie/src/app/sales/home/sales-home.component.spec.ts
Amritanshu 4513e8b263 Bills initially working just as proof of concept
ng linted
modifier categories list is better at displaying data sanely now
2019-07-11 12:17:41 +05:30

26 lines
646 B
TypeScript

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