Skip to content

Commit

Permalink
Update Node SDK test
Browse files Browse the repository at this point in the history
  • Loading branch information
rygine committed Nov 1, 2024
1 parent e4fc2f5 commit c8e14a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sdks/node-sdk/test/Conversations.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ describe("Conversations", () => {
const group = await client1.conversations.newDm(user2.account.address);
expect(group).toBeDefined();
expect(group.id).toBeDefined();
expect(group.createdAtNs).toBeTypeOf("number");
expect(group.createdAtNs).toBeDefined();
expect(group.createdAt).toBeDefined();
expect(group.isActive).toBe(true);
expect(group.name).toBe("");
expect(group.permissions.policyType).toBe(
Expand Down

0 comments on commit c8e14a7

Please sign in to comment.