Skip to content
Yourself edited this page Sep 12, 2015 · 22 revisions

/**

  • Simply verifies that true equals true
  • @name sanityCheckEQ
  • @memberof Tinytest
  • @function
  • @param test {Tinytest} Check Equality
  • @return {None} */ Tinytest.add('Check Equality', function sanityCheckEQ(test) { test.equal(true, true); });

/**

  • [sanityCheckNEQ description]
  • @param {[type]} test) { test.notEqual(true, false);} [description]
  • @return {[type]} [description] */
Clone this wiki locally