neume-network / strategies

Indexing strategies for the neume network.
GNU General Public License v3.0
11 stars 7 forks source link

remove test.skip from call-block-logs test #255

Closed il3ven closed 2 years ago

il3ven commented 2 years ago

This PR closes #230. I think it is false issue. Snapshot extractor does wait for update function. The call-block-logs test is also working after removing test.skip.

Here's a pseudocode to explain what happens.

let write = ''
let ret = await init()
write += ret.write
while(msgIn !== msgOut) {
  const ret = await update()
  write += ret.write
}
return write

In short, snapshot extractor is a mini lifecycle.