Necesito hacer pruebas para la recopilación de sincronización.
Intentalo:
let collection = []; beforeAll( async() => { collection = await getAsyncCollection() } describe.each(collection)("Test summary for collection", (item)=>{ // ... .each work with empty collection before than finish "befoerAll", which getting this collection, why? })¿Cómo hacerlo bien? ¿Y por qué cada uno trabaja antes de "beforeAll"?