Updated Angular to version 11

- ngx-videogular was replaced by @videogular/ngx-videogular
This commit is contained in:
Isaac Abadi
2020-12-10 19:33:53 -05:00
parent f425b9842f
commit 3f10986cdf
47 changed files with 5782 additions and 7469 deletions

View File

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