const find = async function (){
try{
console.log(await Model.findOne())
console.log('after find');
}
catch (e){
console.log('find err = ' + e); // не выводится т.к. нет ошибок
}
}
find()
.then(()=>{console.log('then')})
console.log('END'); // Не выводится и процесс не завершается