Skip to content

Instantly share code, notes, and snippets.

@lmiller1990
Created April 28, 2018 12:29
Show Gist options
  • Save lmiller1990/fe670bae628ef73012fd40e372689156 to your computer and use it in GitHub Desktop.
Save lmiller1990/fe670bae628ef73012fd40e372689156 to your computer and use it in GitHub Desktop.
const matchers = (exp) => ({
toBe: (assertion) => {
if (exp === assertion) {
console.log('pass')
return true
} else {
console.log('fail')
return false
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment