Declare “pending” specs/tests in jasmine or mocha
You can declare disabled functions in both mocha and jasmine using xit (instead of it), and xdescribe (instead of describe). If you want the tests to appear as pending, in mocha you can just leave the second parameter blank in the call to the it() function. For example: describe(‘Something’, function () { it(‘Should be pending’) … Read more