Skip to content

Commit b82c1b3

Browse files
committed
fix(blockchain-link-utils): ignore incomplete type in unit test
1 parent ef86cd4 commit b82c1b3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/blockchain-link-utils/src/tests/solana.test.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ describe('solana/utils', () => {
3333
fixtures.extractAccountBalanceDiff.forEach(({ description, input, expectedOutput }) => {
3434
it(description, () => {
3535
const result = extractAccountBalanceDiff(
36-
input.transaction as SolanaValidParsedTxWithMeta,
36+
// @ts-expect-error Fixtures don't fully implement this interface.
37+
input.transaction as ParsedTransactionWithMeta,
3738
input.address,
3839
);
3940
expect(result).toEqual(expectedOutput);

0 commit comments

Comments
 (0)