Update to v11

This commit is contained in:
Sébastien André
2021-01-08 16:38:04 +01:00
parent 57575c0b81
commit d7c02d7fc0
22 changed files with 340 additions and 608 deletions

View File

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