Skip to content

Instantly share code, notes, and snippets.

@spencerfeng
Created December 13, 2023 11:05
Show Gist options
  • Save spencerfeng/0635a831c34388fbcf8cf56e8ef8e408 to your computer and use it in GitHub Desktop.
Save spencerfeng/0635a831c34388fbcf8cf56e8ef8e408 to your computer and use it in GitHub Desktop.
For tutorial: Mastering the Art of Mocking ES Modules in Jest
export const dependency = () => "the real dependency"
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