In beefStewRecipe.js
, we define and export a dict that looks like this:
export default {
method: ['some', 'array'],
ingredients: ['another', 'array'],
source: 'a simple string that we want to try mocking out',
}
In formatRecipe.js
, we import beefStewRecipe.js
at the top level, and use the strings in the formatRecipe()
function:
import recipe from './beefStewRecipe';
function formatRecipe() {
return `...
Recipe source: ${recipe.source}`;
}
We want mock out the recipe source
attribute per test.