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

26 lines
678 B
TypeScript
Raw Normal View History

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