Kristiyan Kostadinov 59ef40988e feat(core): support TypeScript 4.2 (#41158)
Updates the repo to TypeScript 4.2 and tslib 2.1.0.

PR Close #41158
2021-03-17 09:10:25 -07:00
..

async -> waitForAsync migration

Automatically migrates from async to waitForAsync by changing function calls and renaming imports.

Before

import { async } from '@angular/core/testing';

it('should work', async(() => {
  // async testing logic
}));

After

import { waitForAsync } from '@angular/core/testing';

it('should work', waitForAsync(() => {
  // async testing logic
}));