59ef40988e
Updates the repo to TypeScript 4.2 and tslib 2.1.0. PR Close #41158 |
||
---|---|---|
.. | ||
BUILD.bazel | ||
README.md | ||
index.ts | ||
util.ts |
README.md
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
}));