qooxdoo / qxl.testtapper

A headless testrunner for qooxdoo unit tests using the TAP protocol
http://www.qooxdoo.org/qxl.testtapper
MIT License
0 stars 1 forks source link

skip() #4

Closed zaucker closed 5 years ago

zaucker commented 5 years ago
testFunction: function() {
  skip();
  skip("Specific reason");
  // optionally code below to be skipped
}

should output # testFunction skipped # testFunction skipped: Specific reason to the console.

The test should be counted either as ok or better a separate counter skipped should be used and output in the test summary (the overall result (ok or nok) should not be changed by skipped tests.

oetiker commented 5 years ago

resolved by #5 - see sample tests