Я получаю сообщение об ошибке «fsEvents не является функцией» при запуске npm test
Фрагмент в пакете. json
"test": "react-scripts test"
Ошибка при запуске npm test
TypeError: fsevents is not a function
at new FSEventsWatcher (node_modules/jest-runtime/node_modules/jest-haste-map/build/lib/FSEventsWatcher.js:162:20)
at createWatcher (node_modules/jest-runtime/node_modules/jest-haste-map/build/index.js:1052:23)
at Array.map (<anonymous>)
at HasteMap._watch (node_modules/jest-runtime/node_modules/jest-haste-map/build/index.js:1230:44)
at node_modules/jest-runtime/node_modules/jest-haste-map/build/index.js:517:21
at Generator.next (<anonymous>)
at asyncGeneratorStep (node_modules/jest-runtime/node_modules/jest-haste-map/build/index.js:193:24)
at _next (node_modules/jest-runtime/node_modules/jest-haste-map/build/index.js:213:9)
Версия скриптов React: 3.0.1 (также пробовал 3.4.0) Версия узла: v12.16.1 npm версия: 4.6.1
Я попытался изменить версию of Node (понижение, обновление до последнего) - не работает, также понижено с npm до 4.x по рекомендации другого поста - не работает. Также попытался установить последнюю версию Chokidar (которая мне не требуется в качестве зависимости в проекте).
В чем может быть проблема?