- 
          
- 
                Notifications
    You must be signed in to change notification settings 
- Fork 306
Open
Description
If I mark a test as skipped with
t.test("Some tests", function(t) {
    t.plan(1);
    t.test("some test", {skip:true}, function(t) { ... });
    t.end();
});
- it is no longer counted in the plan, meaning that I have to alter the plan number when I mark a test as skipped, which is rather annoying (I might as well just comment the test out), and
- A skipped test isn't drawn to my attention very clearly.
It might be nice if skipped tests still counted in the plan (so one doesn't have to alter the plan number), and if the number of skipped tests were reported along with passed, failed, and total tests at the end of the test run.
Krinkle
Metadata
Metadata
Assignees
Labels
No labels