This commit is contained in:
Connor Peet 2017-11-04 09:23:26 -07:00
Родитель 7732880227
Коммит a200f6f40c
2 изменённых файлов: 4 добавлений и 1 удалений

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

@ -288,6 +288,8 @@ export class WatchManager {
* Dispatches some watch response on the event stream.
*/
private handleResponse(res: RPC.IWatchResponse) {
// tslint:disable-next-line
console.log('got stream data', res);
if (res.created) {
this.queue!.handleCreate(res);
return;

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

@ -92,7 +92,8 @@ describe('watch', () => {
proxy.pause();
await onceEvent(watcher, 'disconnected');
await client.put('foo1').value('update 2');
// tslint:disable-next-line
console.log('putting', await client.put('foo1').value('update 2'));
proxy.resume();
await onceEvent(watcher, 'put').then((res: IKeyValue) => {
expect(res.key.toString()).to.equal('foo1');