Skip to content

Commit

Permalink
fix flaky integration test (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
lenkan authored Apr 11, 2024
1 parent 72826cf commit 39580ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/integration-scripts/multisig-vlei-issuance.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1261,9 +1261,10 @@ async function getOrCreateAID(
await waitOperation(client, await result.op());
aid = await client.identifiers().get(name);

await client
const op = await client
.identifiers()
.addEndRole(name, 'agent', client!.agent!.pre);
await waitOperation(client, await op.op());
console.log(name, 'AID:', aid.prefix);
}
return aid;
Expand Down

0 comments on commit 39580ef

Please sign in to comment.