Skip to content

Commit

Permalink
test: remove bad @ts-ignore-errors
Browse files Browse the repository at this point in the history
  • Loading branch information
andy-haynes committed Jun 21, 2024
1 parent 03be355 commit 25402be
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/accounts/test/providers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@ describe('providers', () => {
const outcome = await sender.sendMoney(receiver.accountId, BigInt('1'));
const responseWithString = await provider.txStatus(outcome.transaction.hash, sender.accountId);
const responseWithUint8Array = await provider.txStatus(base58.decode(outcome.transaction.hash), sender.accountId);
// @ts-expect-error test input
expect(responseWithString).toMatchObject(outcome);
// @ts-expect-error test input
expect(responseWithUint8Array).toMatchObject(outcome);
});

Expand Down

0 comments on commit 25402be

Please sign in to comment.