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