Skip to content

Instantly share code, notes, and snippets.

@suisho
Created August 5, 2015 12:25
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 suisho/5e12224d9de7e159fc6e to your computer and use it in GitHub Desktop.
Save suisho/5e12224d9de7e159fc6e to your computer and use it in GitHub Desktop.
mochaで特定バージョンだけスキップしたりしなかったりするテストをする。 ref: http://qiita.com/inuscript/items/7e2ece4e659472811fee
var semver = require("semver")
describe("何らかのテスト", function(){
var itFn = it
if(semver(process.version, ' < 0.12')){
itFn = it.skip
}
itFn("0.12以上ならやるテスト", function(){
// test...
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment