brewman/overlord/src/app/purchase/purchase-dialog.component.spec.ts

26 lines
685 B
TypeScript
Raw Normal View History

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