Skip to content

Tape tests always pass #1429

@ozyx

Description

@ozyx
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
  1. Create a new NodeJS project
  2. 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);
});

  1. Run test from test explorer
  2. See test passes when it should fail

Looking at the TAP test output it seems like the test isn't even being run..?
image

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions