Skip to content

Commit

Permalink
test(cli): Cleanup context teardowns
Browse files Browse the repository at this point in the history
  • Loading branch information
grypez committed Jul 31, 2024
1 parent 14540fb commit 40c07be
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion packages/cli/test/daemon-context.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,5 @@ export const daemonContext = {
},
teardown: async execa => {
await execa`endo purge -f`;
await execa`endo stop`;
},
};
5 changes: 1 addition & 4 deletions packages/cli/test/demo/names-in-transit.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,5 @@ export const context = {
await execa`endo adopt --as alice-agent 1 counter --name redoubler`;
await execa`endo dismiss --as alice-agent 1`;
},
teardown: async execa => {
// TODO: remove messages from inbox? unsure whether messages are part of the state
await null;
},
teardown: async execa => {},
};

0 comments on commit 40c07be

Please sign in to comment.