Skip to content

Commit

Permalink
issue #145 - integration test to reproduce
Browse files Browse the repository at this point in the history
  • Loading branch information
psteniusubi committed Jan 16, 2024
1 parent 2272f43 commit 926b76b
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions examples/integration-scripts/singlesig-dip.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,11 @@ describe('singlesig-dip', () => {
let op = waitOperation(client1, await result.op());
});
// https://github.com/WebOfTrust/signify-ts/issues/145
test.failing(
'delegate2b',
async () => {
// delegate waits for completion
let delegate2 = await client2.identifiers().get('delegate2');
let op: any = { name: `delegation.${delegate2.prefix}` };
op = await waitOperation(client2, op);
expect(delegate2.prefix).toEqual(op.response.i);
},
30000
);
test('delegate2b', async () => {
// delegate waits for completion
let delegate2 = await client2.identifiers().get('delegate2');
let op: any = { name: `delegation.${delegate2.prefix}` };
op = await waitOperation(client2, op);
expect(delegate2.prefix).toEqual(op.response.i);
});
});

0 comments on commit 926b76b

Please sign in to comment.