barker/bookie/src/app/section-printers/section-printer.component.s...

26 lines
681 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();
});
});