Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tape tests always pass #1429

Closed
ozyx opened this issue Dec 2, 2016 · 1 comment
Closed

Tape tests always pass #1429

ozyx opened this issue Dec 2, 2016 · 1 comment

Comments

@ozyx
Copy link
Contributor

ozyx commented Dec 2, 2016

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

@ozyx
Copy link
Contributor Author

ozyx commented May 27, 2017

Fixed in 1.3.
Closing.

@ozyx ozyx closed this as completed May 27, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant