Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
mchenani committed Dec 17, 2024
1 parent 7e7410f commit 37ed3ec
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions bindings_node/test/Conversations.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ describe('Conversations', () => {
expect(memberInboxIds).toContain(client1.inboxId())
expect(memberInboxIds).toContain(client2.inboxId())
expect((await group.groupMetadata()).conversationType()).toBe('group')
expect((await group.groupMetadata()).creatorInboxId()).toBe(client1.inboxId())
expect((await group.groupMetadata()).creatorInboxId()).toBe(
client1.inboxId()
)

expect(group.consentState()).toBe(ConsentState.Allowed)

Expand Down Expand Up @@ -205,7 +207,9 @@ describe('Conversations', () => {
expect(memberInboxIds).toContain(client1.inboxId())
expect(memberInboxIds).toContain(client2.inboxId())
expect((await group.groupMetadata()).conversationType()).toBe('dm')
expect((await group.groupMetadata()).creatorInboxId()).toBe(client1.inboxId())
expect((await group.groupMetadata()).creatorInboxId()).toBe(
client1.inboxId()
)

expect(group.consentState()).toBe(ConsentState.Allowed)

Expand Down

0 comments on commit 37ed3ec

Please sign in to comment.