Expected value to equal:
"Zone doesn't exist"
Received:
"2 UNKNOWN: Zone doesn't exist"
我的测试突然失败了。在所有内容之前附加2 UNKNOWN:
。
答案 0 :(得分:0)
使用已更新为1.8.4的^1.7.2
时出现向后兼容性问题。
grpc-node 1.8.4将错误代码名称添加到状态错误消息。 https://github.com/grpc/grpc-node/pull/126
导致以下错误。
替换
try {
await sayHello()
} catch (error) {
message = error.message
}
到
try {
await sayHello()
} catch (error) {
message = error.details
}
从message
到details
。