Skip to content

Commit 41df86c

Browse files
ci: apply automated fixes
1 parent d5b1952 commit 41df86c

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

packages/db-collection-e2e/src/suites/moves.suite.ts

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -125,12 +125,15 @@ export function createMovesTestSuite(getConfig: () => Promise<TagsTestConfig>) {
125125
) {
126126
// Use eager collection since it continuously syncs all data
127127
const usersCollection = config.collections.eager.users
128-
await waitFor(() => {
129-
return userIds.every((userId) => usersCollection.has(userId))
130-
}, {
131-
timeout,
132-
message: `Users ${userIds.join(', ')} did not sync to collection`,
133-
})
128+
await waitFor(
129+
() => {
130+
return userIds.every((userId) => usersCollection.has(userId))
131+
},
132+
{
133+
timeout,
134+
message: `Users ${userIds.join(', ')} did not sync to collection`,
135+
},
136+
)
134137
}
135138

136139
// Helper function to run all tests for a given sync mode

0 commit comments

Comments
 (0)