-
-
Save chrisdickinson/3184a40e758ba262c22a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// my npm dep tree (fake, made of lies) | |
myproject | |
├─┬ [email protected] | |
│ └── [email protected] | |
└── [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// this is a file that all of my tests require. | |
for (var key in require.cache) { | |
if (require.cache[key].exports && | |
require.cache[key].exports.onPossiblyUnhandledRejection) { | |
require.cache[key].exports | |
.onPossiblyUnhandledRejection(throwRejectedPromise) | |
} | |
} | |
function throwRejectedPromise (err) { | |
throw err | |
} | |
// I have to do this because sometimes I'm returning promises | |
// generated by "mydep" and ".then"-ing them in my tests — which | |
// means errors thrown by failed assertions in them will go to | |
// [email protected]'s unhandledRejection handler. | |
// | |
// At other times I'm returning promises from my own library, and | |
// errors that happen in those ".then" handlers will go to | |
// [email protected]'s unhandledRejection handler. | |
// | |
// Yes, `dedupe` can solve this for a lot of cases, but: | |
// - some folks pin deps and thus they're not dedupable | |
// - sometimes deps are dedupable, but different versions of npm | |
// will build different dep trees (npm@3 is great at flattening! | |
// but not all npms are equal in this regard.) | |
// - the other option is to wrap-ish all promises coming out of my | |
// library, which is ... kind of a no-go |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment