File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed
packages/db-collection-e2e/src/suites Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments