Skip to content

Commit cf35e51

Browse files
committedFeb 24, 2024
fix blur test file
1 parent ab4ef03 commit cf35e51

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎services/decoder/protocols/blur/blur.test.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ describe("blur", () => {
1717
if (!event) {
1818
throw Error("Event not found");
1919
}
20-
const testAdded: boolean = false;
21-
expect(testAdded).toEqual(true);
20+
expect(event?.details?.length).toEqual(4);
21+
expect(event?.tokens?.length).toEqual(1);
22+
expect(event?.nfts?.length).toEqual(1);
2223
});
2324
});

0 commit comments

Comments
 (0)