如何在 Angular 2 测试中对 fixture.whenStable 使用 await
How to use await on fixture.whenStable in Angular 2 Tests
虽然whenStable
returns一个承诺,但我不允许使用await。
下面是我的 tsconfig
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
我正在使用 "typescript": "^2.1.5"
如错误消息中所述:'await' 只允许在异步函数中使用。当你想使用await
时,你必须用async
关键字标记外部函数。
// example
const myAsyncFunction = async () => {
// ... some code
await fixture.whenStable();
// ... some code
}
当您使用 async
关键字标记任何函数时,它 returns 是一个承诺。查看 this question 以更好地解释 async/await.
虽然whenStable
returns一个承诺,但我不允许使用await。
下面是我的 tsconfig
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
我正在使用 "typescript": "^2.1.5"
如错误消息中所述:'await' 只允许在异步函数中使用。当你想使用await
时,你必须用async
关键字标记外部函数。
// example
const myAsyncFunction = async () => {
// ... some code
await fixture.whenStable();
// ... some code
}
当您使用 async
关键字标记任何函数时,它 returns 是一个承诺。查看 this question 以更好地解释 async/await.