Upgrade to angular v11

This commit is contained in:
2020-11-23 17:12:27 +05:30
parent afe746ecdc
commit 1b84ef0b11
44 changed files with 108 additions and 108 deletions

View File

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { PaymentDialogComponent } from './payment-dialog.component';
@ -6,7 +6,7 @@ describe('PaymentDialogComponent', () => {
let component: PaymentDialogComponent;
let fixture: ComponentFixture<PaymentDialogComponent>;
beforeEach(async(() => {
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [PaymentDialogComponent],
}).compileComponents();