activate other tests again

This commit is contained in:
Simon Laux
2022-06-20 16:19:33 +02:00
parent d93622bc84
commit d8d26b9cae
2 changed files with 3 additions and 26 deletions

View File

@@ -1,22 +0,0 @@
const { default: dc } = require('./dist')
const ac = new dc('test123456')
ac.startJSONRPCHandler(console.log)
console.log(
ac.jsonRPCRequest(
JSON.stringify({
jsonrpc: '2.0',
method: 'get_all_account_ids',
params: [],
id: 2,
})
)
)
setTimeout(() => {
ac.close() // This segfaults -> TODO Findout why?
console.log('still living')
}, 1000)