Skip to content

Instantly share code, notes, and snippets.

@jimmyandrade
Last active May 12, 2020 19:58
Show Gist options
  • Save jimmyandrade/a050cb2f469fedfea4d29123cdaea3d8 to your computer and use it in GitHub Desktop.
Save jimmyandrade/a050cb2f469fedfea4d29123cdaea3d8 to your computer and use it in GitHub Desktop.
const mockedFunction = (keys) => (key) => {
if(keys.include(key)) {
return keys[key]
}
return false
}
const fn = mockedFunction({
PARKING_REPORT: true,
CAR_PLATE_CONFIRM: true
})
mockImplementation(fn)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment