jest-community / vscode-jest

The optimal flow for Jest based testing in VS Code
MIT License
2.83k stars 290 forks source link

macOS `fsevents unavailable (this watcher can only be used on Darwin)` #423

Open Glutnix opened 5 years ago

Glutnix commented 5 years ago

Environment

  1. code -v : 1.31.0 7c66f58312b48ed8ca4e387ebd9ffe9605332caa x64

  2. node -v: 10.15.1

  3. npm -v: 6.7.0

  4. npm ls jest or npm ls react-scripts (if you haven’t ejected): jest@24.0.0

  5. your vscode-jest settings if customized:

    • jest.pathToJest? blank
    • jest.pathToConfig? blank
    • was working before upgrading VScode to 1.31.0
  6. Operating system: macOS 10.14.3

Prerequisite

Steps to Reproduce

  1. Have Jest Extension installed into older VSCode
  2. Upgrade VSCode to 1.31.1
  3. Open a test/spec file

Relevant Debug Info

Error: `fsevents` unavailable (this watcher can only be used on Darwin)
    at new FSEventsWatcher (/Users/btaylor/Sites/nzta-seatbelts/node_modules/sane/src/fsevents_watcher.js:37:13)
    at createWatcher (/Users/btaylor/Sites/nzta-seatbelts/node_modules/jest-haste-map/build/index.js:952:23)
    at Array.map (<anonymous>)
    at HasteMap._watch (/Users/btaylor/Sites/nzta-seatbelts/node_modules/jest-haste-map/build/index.js:1127:44)
    at _buildPromise._buildFileMap.then.then.hasteMap (/Users/btaylor/Sites/nzta-seatbelts/node_modules/jest-haste-map/build/index.js:441:23)
    at process.internalTickCallback (internal/process/next_tick.js:77:7)

Error: `fsevents` unavailable (this watcher can only be used on Darwin)
    at new FSEventsWatcher (/Users/btaylor/Sites/nzta-seatbelts/node_modules/sane/src/fsevents_watcher.js:37:13)
    at createWatcher (/Users/btaylor/Sites/nzta-seatbelts/node_modules/jest-haste-map/build/index.js:952:23)
    at Array.map (<anonymous>)
    at HasteMap._watch (/Users/btaylor/Sites/nzta-seatbelts/node_modules/jest-haste-map/build/index.js:1127:44)
    at _buildPromise._buildFileMap.then.then.hasteMap (/Users/btaylor/Sites/nzta-seatbelts/node_modules/jest-haste-map/build/index.js:441:23)
    at process.internalTickCallback (internal/process/next_tick.js:77:7)

Error: `fsevents` unavailable (this watcher can only be used on Darwin)
    at new FSEventsWatcher (/Users/btaylor/Sites/nzta-seatbelts/node_modules/sane/src/fsevents_watcher.js:37:13)
    at createWatcher (/Users/btaylor/Sites/nzta-seatbelts/node_modules/jest-haste-map/build/index.js:952:23)
    at Array.map (<anonymous>)
    at HasteMap._watch (/Users/btaylor/Sites/nzta-seatbelts/node_modules/jest-haste-map/build/index.js:1127:44)
    at _buildPromise._buildFileMap.then.then.hasteMap (/Users/btaylor/Sites/nzta-seatbelts/node_modules/jest-haste-map/build/index.js:441:23)
    at process.internalTickCallback (internal/process/next_tick.js:77:7)

Error: `fsevents` unavailable (this watcher can only be used on Darwin)
    at new FSEventsWatcher (/Users/btaylor/Sites/nzta-seatbelts/node_modules/sane/src/fsevents_watcher.js:37:13)
    at createWatcher (/Users/btaylor/Sites/nzta-seatbelts/node_modules/jest-haste-map/build/index.js:952:23)
    at Array.map (<anonymous>)
    at HasteMap._watch (/Users/btaylor/Sites/nzta-seatbelts/node_modules/jest-haste-map/build/index.js:1127:44)
    at _buildPromise._buildFileMap.then.then.hasteMap (/Users/btaylor/Sites/nzta-seatbelts/node_modules/jest-haste-map/build/index.js:441:23)
    at process.internalTickCallback (internal/process/next_tick.js:77:7)

Error: `fsevents` unavailable (this watcher can only be used on Darwin)
    at new FSEventsWatcher (/Users/btaylor/Sites/nzta-seatbelts/node_modules/sane/src/fsevents_watcher.js:37:13)
    at createWatcher (/Users/btaylor/Sites/nzta-seatbelts/node_modules/jest-haste-map/build/index.js:952:23)
    at Array.map (<anonymous>)
    at HasteMap._watch (/Users/btaylor/Sites/nzta-seatbelts/node_modules/jest-haste-map/build/index.js:1127:44)
    at _buildPromise._buildFileMap.then.then.hasteMap (/Users/btaylor/Sites/nzta-seatbelts/node_modules/jest-haste-map/build/index.js:441:23)
    at process.internalTickCallback (internal/process/next_tick.js:77:7)

Starting Jest in Watch mode failed too many times and has been stopped.
 see troubleshooting: https://github.com/jest-community/vscode-jest/blob/master/README.md#troubleshooting

Expected Behavior

Watch mode to work as expected

Actual Behavior

A notification is shown "Starting Jest in Watch mode failed too many times and has been stopped." and the Jest extension output window is shown with the debug info above.

GargantulaKon commented 5 years ago

It happens in version 1.31.0 as well. I see that you have 1.31.1 listed. Is that the Insiders version?

Glutnix commented 5 years ago

No, 1.31.1 was just the latest vscode release

EdouardBougon commented 5 years ago

brew install watchman fixed the problem for me.

https://github.com/cm-pliser-tdd-by-example/tdd-by-example-js/issues/10#issuecomment-361039205

Glutnix commented 5 years ago

I had watchman already installed. I did a full brew reinstall watchman and still no dice.

GargantulaKon commented 5 years ago

@EdouardBougon Those instructions worked for me, thanks!

Glutnix commented 5 years ago

Figured it out. I didn't realise that Nuxt was putting a jest config into package.json, and for some reason, I had "watchman": false in there.. sigh 😑

JohnGeorgiadis commented 5 years ago

brew install watchman worked for me too, thanks!

LuizFellype commented 5 years ago

I was facing this problem with version of node in 11.15.0, then I changed to v10.15.3 and its gone.

elhachmi commented 5 years ago

I'm using jest with react native, every things goes well before I restarted my machine, then I got the same error. Installing watchman didn't solve my problem, I stoped Metro Bundler I deleted build folder from android project I relaunchced my app and it works again.

lexyblazy commented 5 years ago

brew install watchman worked for me as well. Thanks.

TheHolisticDev commented 5 years ago

npm install -g fsevents worked for me.

ayunas commented 5 years ago

npm install fsevents fixed my issue as well. This is on a fresh install of mac osx

philippefutureboy commented 5 years ago

npm install -g fsevents did not work for me npm install fsevents worked for me, optionally with -D flag

anthony-alfaro commented 5 years ago

brew install watchman worked!!! Thanks.

vladminsky commented 5 years ago

Nothing helped until...

brew reinstall watchman fixed the problem on node v12.10.0

episage commented 5 years ago

brew reinstall watchman works for macOS Mojave, node v12.10.0

liam-mei commented 4 years ago

brew install watchman didn't work for me.

npm install --save-dev fsevents worked for me macOs: Mojave, node: 12.6.0

netdesignr commented 4 years ago

brew install watchman it might work if there's no instance of watchman. In my situation, I had to brew upgrade watchman and it worked like a charm.

macOs: Catalina node: 12.12.0

LitoMore commented 4 years ago

But why? Anyone can explain why we have to run brew install watchman?

Billson7 commented 4 years ago

nvm use then yarn:test worked for me. Turns out it was the wrong version of node.

sirvan3tr commented 4 years ago

brew upgrade watchman worked for me as I already had it installed.

jamesalley commented 4 years ago

brew install watchman worked for me.

LitoMore commented 4 years ago

You guys should look for the reasons, not just brew install watchman.

There is no documentation says we need install watchman. So why?

fahadhaq commented 4 years ago

For me I tried all of the above but nothing worked. I had to set the correct nap version. for me I used the following command as I use nvm and have several version of nom installed.

nvm alias default 10.6.0

Hope this will help someone out there.

6220119 commented 4 years ago

@LitoMore The reason being: https://github.com/facebook/jest/blob/ac267b16e46527d16945fe468f436e46c694fe73/packages/jest-haste-map/src/index.ts#L801

Jest Haste Map has a dependencies on SaneWatcher which can use FB Watchman over fs

// WatchmanWatcher > FSEventsWatcher > sane.NodeWatcher
LitoMore commented 4 years ago

@6220119 Thank you so much my Grabber! 🤝

mrmgomes commented 4 years ago

brew install watchman didn't work for me.

npm install --save-dev fsevents worked for me macOs: Mojave, node: 12.6.0

npm install --save-dev fsevents solved the problem. Thanks!

Ridd0 commented 4 years ago

Run yarn install again worked for me.

partriv commented 4 years ago

brew upgrade watchman worked for me. I already had watchman installed, but upgraded from node 8 to node 10 and encountered this error.

swiss-chris commented 4 years ago

In my case all I needed was npm install :)

iamsaurabhrai commented 4 years ago

brew reinstall watchman works for me too on macOS Catalina, node v12.8.1

kelly-tock commented 4 years ago

brew upgrade watchman worked for me no node v13.13.0, as I already had it installed.

kenning commented 4 years ago

the fsevents and node-gyp packages have caused me issues for years, and it seems like nobody understands what actually causes this. i'm on mac os 10.15 but since mac os ~10.12 in like 2017 it's thrown random errors and occasionally messed up npm installs just enough so that i have learned to try random crap until it sort of works without actually figuring it out.

here's some things which have seemed to be related:

i've shown these issues to people much smarter than me and nobody seems to be able to diagnose the problem. the fact that it sprawls between node, python and even c++ makes me think i'm just not going to figure this out and should just reinstall (although i haven't actually had to yet).

i still have no clue what the central issue is, and whenever i google for related issues i just see threads like this with dozens of people saying "well i tried this and it worked i guess," and eventually, replies like "that didnt work for me." and many of them still get replies, like this one -- the last reply was just 8 days ago.

if the above suggestions don't work, reader, i wish i could help you.

edit: i've seen "try installing or reinstalling watchman" many times and although it clearly works for a lot of people, it's one of the few suggestions that has never improved things for me.

edit 2: i switched to ubuntu because i like laptops with usb and hdmi ports. got a thinkpad and it installed in 15 minutes and i've actually had zero problems, never going back.

pawanraocse commented 4 years ago

brew install watchman, this works!!

gitpancake commented 3 years ago

brew install watchman fixed the problem for me.

cm-pliser-tdd-by-example/tdd-by-example-js#10 (comment)

This worked for me!! brew install watchman, then when running the test suite again I needed to grant some permissions to watchman.

Sayvai commented 3 years ago

brew install watchman worked for me also.

However, i stumbled across a non-related issue to do with excessive node process CPU usage when idle (~250%), and so i downloaded and re-installed Command Line Tools for Xcode, and then restarted my machine (that's important), which appears to resolve the excessive node CPU usage issue, and by coincidence it looks to have also resolved the Jest Watch mode issue too, without the need for the brew dependency; watchman after i carried out a Jest Watch mode test run after uninstalling the dependency; brew uninstall watchman.

Not sure specifically why this approach to reinstalling Command Line Tools for Xcode works to resolve the Jest Watch mode issue as described on this ticket, which i had also suffered from.

But this may provide an alternative approach for others who may like to avoid installing additional dependencies such as watchman, where possible, to workaround the Jest Watch mode issue.

homostellaris commented 3 years ago

I was using Node 15 but the project was created in the Node 8 days. Fix for me was:

- nvm install 8
- rm -rf node_modules/
- npm install

This is why all projects should have an .nvmrc.

vvvprabhakar commented 3 years ago

brew install watchman didn't work for me.

npm install --save-dev fsevents worked for me

macos: Big Sur Node version : 12

347830076 commented 3 years ago

使用这个命令安装就好了 npm install --save-dev fsevents