Created
December 13, 2023 11:05
-
-
Save spencerfeng/0635a831c34388fbcf8cf56e8ef8e408 to your computer and use it in GitHub Desktop.
For tutorial: Mastering the Art of Mocking ES Modules in Jest
This file contains hidden or 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
export const dependency = () => "the real dependency" |
This file contains hidden or 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
import { dependency } from "./dependency.js" | |
export const functionToTest = () => { | |
return dependency() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment