Files
barker/bookie/src/app/section-printers/section-printer.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
679 B
TypeScript

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