updating angular core and cli

step 1 of update Angular 10 -> 11
This commit is contained in:
2020-11-23 11:31:45 +01:00
parent 96bf08431f
commit 398774dbd8
15 changed files with 618 additions and 1197 deletions

View File

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