brewman/overlord/src/app/receipt/receipt.component.spec.ts

26 lines
631 B
TypeScript
Raw Normal View History

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