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.
should output # testFunction skipped # testFunction skipped: Specific reason to the console.
The test should be counted either as
ok
or better a separate counterskipped
should be used and output in the test summary (the overall result (ok
ornok
) should not be changed byskip
ped tests.