Skip to content

Commit

Permalink
Merge pull request #388 from xmtp/cv/remove-skip-sync
Browse files Browse the repository at this point in the history
Remove skipSync default in groups related functions
  • Loading branch information
cameronvoell authored May 24, 2024
2 parents 636a217 + 00215af commit 1ffb0be
Show file tree
Hide file tree
Showing 6 changed files with 89 additions and 87 deletions.
12 changes: 6 additions & 6 deletions example/src/tests/createdAtTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,18 +83,18 @@ test('group createdAt matches listAll', async () => {
const first = 1
const second = 0
assert(
alixGroups[first].topic === alixGroup.id,
alixGroups[1].topic === alixGroup.topic,
'First group returned from listGroups shows ' +
(alixGroups[1] as Group).id +
alixGroups[1].topic +
' but should be ' +
alixGroup.id
alixGroup.topic
)
assert(
alixGroups[second].topic === boGroup.id,
alixGroups[0].topic === boGroup.topic,
'Second group returned from listGroups shows ' +
(alixGroups[0] as Group).id +
alixGroups[0].topic +
' but should be ' +
boGroup.id
boGroup.topic
)
assert(
alixGroups[first].createdAt === alixGroup.createdAt,
Expand Down
Loading

0 comments on commit 1ffb0be

Please sign in to comment.