This commit is contained in:
Connor Peet 2020-06-21 14:29:10 -07:00
Родитель a1fc5045f7
Коммит 2e2b6c5658
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: CF8FD2EA0DBC61BD
1 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -231,9 +231,12 @@ describe('watch()', () => {
proxy.unsuspend();
expect(getWatchers()).to.deep.equal([]);
await watcher.cancel();
proxiedClient.close();
await proxy.deactivate();
// todo: this should be awaited, but when the client is closed the tcp
// end will time out (after 2 minutes). We can implement a client graceful
// close once https://github.com/grpc/grpc-node/issues/1340
proxy.deactivate();
});
});
});