Skip to content

Instantly share code, notes, and snippets.

@isaacs
Created May 7, 2020 16:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isaacs/6ea6cd1bb44829f8a16c0d933341cd16 to your computer and use it in GitHub Desktop.
Save isaacs/6ea6cd1bb44829f8a16c0d933341cd16 to your computer and use it in GitHub Desktop.
debugger
const t = require('./')
t.test('this is a test', t => {
debugger
t.pass('this is only a test')
setTimeout(() => {
debugger
t.pass('this is fine')
t.end()
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment