[Vuejs]-Installing Jest in Vue 3 gives error "Cannot locate the bindings file" for deasync on Linux

0👍

The solution is to downgrade node to version 12.0.0.

This question/answer helped me to find this solution.

To downgrade, perform the following steps:

nvm install 12.0.0
nvm alias default 12.0.0
nvm use default

Leave a comment