Skip to content

Instantly share code, notes, and snippets.

@DinisCruz
Created February 23, 2015 19:13
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 DinisCruz/324e8dd97249cda5da23 to your computer and use it in GitHub Desktop.
Save DinisCruz/324e8dd97249cda5da23 to your computer and use it in GitHub Desktop.
mocha tricks
describe 'test suite xyz', ->
skip_Tests_If_Offline = (testSuite,next)=>
url = "https://www.google.com"
url.GET (html)=>
if not html
for test in testSuite.tests
test.pending = true
next()
before (done)->
skip_Tests_If_Offline @.test.parent, done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment