Skip to content

Instantly share code, notes, and snippets.

@lmiller1990
Created April 28, 2018 12:37
Show Gist options
  • Save lmiller1990/8f4aac6f89afa0d9c45337a5518adf36 to your computer and use it in GitHub Desktop.
Save lmiller1990/8f4aac6f89afa0d9c45337a5518adf36 to your computer and use it in GitHub Desktop.
const {
describe,
it,
expect,
matchers
} = require('./index')
let executes = 0
const noop = () => { executes += 1 }
describe('describe', () => {
it('executes a callback function', () => {
const actual = describe('', noop)
expect(executes).toBe(1)
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment