Mire el siguiente código, si await getDocs falló, ¿cómo llegar a la excepción? Este código actualmente nunca llegará a una excepción.
try{ const q = query(collection(firestoredb, "lists"), where("user", "==", "testID")); const querySnapshot = await getDocs(q); let data = []; querySnapshot.forEach((doc) => { data.push(doc.data()); }); }catch(e){ console.log(e); }