Expected Behavior
Failing Tape tests are reported as failing in test explorer.
Actual Behavior
Tape tests always pass.
- NTVS Version: 1.2
- Visual Studio Version: 2015 Update 3
- Node.js Version: v6.9.1
Steps to Reproduce
- Create a new NodeJS project
- Add a new file with a Tape test that should fail such as:
var test = require("tape");
test('fail_test', function (t) {
t.plan(1);
t.equal(2 + 2, 5);
});
- Run test from test explorer
- See test passes when it should fail
Looking at the TAP test output it seems like the test isn't even being run..?

Expected Behavior
Failing Tape tests are reported as failing in test explorer.
Actual Behavior
Tape tests always pass.
Steps to Reproduce
Looking at the TAP test output it seems like the test isn't even being run..?
