Files
brewman/overlord/src/app/payment/payment-dialog.component.spec.ts
2020-11-23 17:12:27 +05:30

25 lines
686 B
TypeScript

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