Skip to content

Latest commit

 

History

History

function-in-same-module

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Mocking Example: A function used by another function in the same module

In greeting.js we have the following functions:

export function getPlanet () {
    return 'world';
}

export default function getGreeting () {
    return `hello ${getPlanet()}!`;
}

The challenge

We want mock out getPlanet when testing getGreeting per test.

Prior art

This puzzle in particular seems to bamboozle quite a few folks - here's a bunch of stackoverflows/blogs etc discussing approaches to this issue (or similar):

Solution

Here's a tl;dr of the solutions usually suggested:

  1. Use exports.getPlanet() instead of getPlanet()
  2. Use dependency injection
  3. Refactoring into a class, or move getPlanet to a seperate file
  4. Use babel-plugin-rewire (example)

This repo shows examples for the following approaches:

My personal preference is for dependency injection. exports. seems hacky and ties you to implementation details about how your build handles and compiles ES6 imports/exports.