gpt4 book ai didi

angular - 如何在 Angular 2 测试中对 fixture.whenStable 使用 await

转载 作者:搜寻专家 更新时间:2023-10-30 21:29:40 25 4
gpt4 key购买 nike

尽管 whenStable 返回一个 promise ,但我不允许使用 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 关键字标记任何函数时,它会返回一个 promise 。看看this question更好地解释异步/等待。

关于angular - 如何在 Angular 2 测试中对 fixture.whenStable 使用 await,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43547342/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com