We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A file has a few exported functions...
export function foo() {} export function bar() {} export function baz() {}
In a test file...
import * as pathFileHelpers from 'path/to/file'; pathFileHelpers.__Rewire__({ readFileSync: () => { return 'test test test' }, })
_get__(...).__Rewire__ is not a function
Why?
SO Question
The text was updated successfully, but these errors were encountered:
I got the same, but I figure out that if the exported function are "heavy" enough, it works.
By example
function bar() { return 42; } export function foo() { return 60; }
This doesn't work, but
function bar() { return 42; } export function foo() { return bar(); }
does work.
Even trickier:
function baz() { return bar(); } function bar() { return 42; } export function foo() { return 60; }
work as well, even though the added code is unused and unreachable. But it looks like having inner calls is mandatory
Sorry, something went wrong.
No branches or pull requests
A file has a few exported functions...
In a test file...
_get__(...).__Rewire__ is not a function
Why?
SO Question
The text was updated successfully, but these errors were encountered: