You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 23, 2021. It is now read-only.
1769: Terminate cnd in new e2e format r=bonomat a=bonomat
In the new e2e format the cnd nodes are not terminated leaving us with unwanted running processes. Even worse, since we do not stop btsieve queries, these cnd nodes keep firing requests to the blockchain nodes.
Note:
This does not work as the test framework does not honor the final block, i.e. if the test times out, finally is not executed.
```javascript
it("after the swap was accepted", async function() {
const { alice, bob } = await createActors(
"cnd_can_be_restarted.log"
);
try {
await do_the_limbo_dance();
} finally {
if (alice) {
alice.stop();
}
if (bob) {
bob.stop();
}
}
}
```
Co-authored-by: Philipp Hoenisch <philipp@hoenisch.at>
0 commit comments