Skip to content

Commit

Permalink
beekeeper::delete method should be called using await syntax as it is…
Browse files Browse the repository at this point in the history
… async method
  • Loading branch information
vogel76 committed Sep 26, 2024
1 parent 70cd4f1 commit c8dbfc1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ test.describe('Beekeeper factory tests for Node.js', () => {
await beekeeperTest(async ({ beekeeper }) => {
beekeeper.createSession("my.salt");

beekeeper.delete();
await beekeeper.delete();
});
});

Expand Down Expand Up @@ -61,7 +61,7 @@ test.describe('Beekeeper factory tests for Node.js', () => {
await session1.createWallet('w0');
await session2.createWallet('w1');

beekeeper.delete();
await beekeeper.delete();
})).resolves.toBeUndefined();
});

Expand Down

0 comments on commit c8dbfc1

Please sign in to comment.