Mocha's skip doesn't seems supported for NTVS.

Unit tests trying to use skip() method are still executed by Visual Studio and the TFS build system.

Expected Behavior

Test defined like this should not be executed :

describe("my suite" => {
   it.skip("skiped test", () => {} );
});
Actual Behavior

Tests are executed

  • NTVS Version: 1.2.40726
  • Visual Studio Version: 2015 Update 3
  • Node.js Version: 4.5.0
Steps to Reproduce
  1. create test as describe previously