Given that plugins have access to the Jest hooks, `jest-watch-mock-stdin` could type stuff at very specific times. For example "after a test run is completed" or "interrupt a test run", etc.
If you have a good use case for this plugin, I would love to hear about it.
This plugin allowed us to finally be able to write end-to-end tests for @fbjest's watch mode.
#L3-L44" target="_blank" rel="nofollow noopener">github.com/facebook/jest/…
#L46-L63" target="_blank" rel="nofollow noopener">github.com/facebook/jest/…
I published `jest-watch-mock-stdin`, I know that it's weird and looks useless. It's in a rough state and experimental, but feedback is more than welcome 🙃
In this case, it's running tests filtered by /foo/, then again filtered by /bar/ and exiting the Jest process at the end.
Just published a new version of `jest-runner-eslint` for @fbjest. It comes with its own watch plugin for using `--fix`. It is still experimental and feedback is more than welcome 🙃
🚨 This is not a drill 🚨
🔥 testingjavascript.com is LIVE!!! 🔥
Learn the smart, efficient way to test any JavaScript application from me with proven tools and techniques 🏆
This is the BIGGEST course of its kind on the internet 🌐
📢 LET EVERYONE KNOW!
Retweet thread: 1/
I’m happy to announce a new testing library to help you write better React Native tests with less effort.
react-native-testing-library 🎉🎉🎉
It’s like react-testing-library but tailored for RN and universal React apps. Happy testing! 🙃
github.com/callstack/reac…
@rogeliog Thanks! If you could publish a new version that'd be super! Looks like you prepared a new version but maybe forgot to publish? github.com/rogeliog/jest-…
Got multi-core rendering working for @gatsbyjs in like 45 minutes due to the fantastic jest-worker library and @mipiechowiak's fantastic refactor of Gatsby's HTML render pipeline earlier this year
github.com/gatsbyjs/gatsb…
@milkstarz Hey! First of all, I'm sorry that I missed this and that it is an extremely late response, but... I just published version `0.2.0` which is case insensitive. Let me know if it helps 🙃
@rogeliog I love the typeahead extension you wrote for jest! is there any way it could be extended to support no case matching? I can totally take a look at your codebase and put in a PR if you think it's possible :)
I just created a thing that you might call jest-runner-node
Allows you to run a bunch of node files with Jest (meaning you get all the sweet features like automatic throttled parallel runs, watch mode, etc.) It's actually very cool. May be featured into today's #DevTipsWithKent
@kentcdodds It is still in a super super rough spot because it was a quick hack. But I'm more than happy to spend more time on it. `npx get-dependents path/to/file.js`
Is there a good tool that can find dependents on a module within a project?
a.js depends on b.js
c.js depends on b.js
I want to find a tool like:
$ find-dependents b.js
a.js
c.js
Does such a tool exist?