I would like to create an automatic teardown task for JsMocha mocks that js-test-driver would be sure to call after every test and report the test as failed if any of the expectations aren't met.

My current implementation uses the tearDown method, which throws an error when it finds unmet expectation, however this presents a bit of an issue when there are pre-existing errors or assertion failures in the test. It looks like this:

testCase.prototype.tearDown = function() {
  var errors;
  for (var i = 0; i < Mock.mocked_objects.length; i++) {
    if (!Mock.mocked_objects[i].jsmocha.verify()) {
      errors = Mock.mocked_objects[i].jsmocha.report();
      break;
    }
  }
  Mock.teardown_all();
  if (errors) {
    throw {message: errors};
  }
};

Problem one is that the error I raise from tearDown is printed in the middle of the other error:

tests.Inbox.testShowEventListenerShowsReadMessage error (5.00 ms):
ReferenceError: asdfasdf is not defined

object: Object.getListItems
INFO called 0 time(s)
FAIL wrong number of invocations, expected exactly once invoked no times
object: Object.rerender
INFO called 0 time(s)
FAIL wrong number of invocations, expected exactly once invoked no times
 ()@/tests/inbox_test.js:36

(The problem here is that the line number for the ReferenceError on the first line of the output is after all the JsMocha messages)

I'm able to work around this by using jstestdriver.console instead of throwing the errors directly:

if (errors) {
  jstestdriver.console.error(name, errors);
  throw {message: ""};
}

But this still pollutes the test output with JsMocha junk when the test fails for reasons unrelated to unmet expectations.

What I'd like to do instead is check if any errors have already been raised and only throw an error if the rest of the test has succeeded.

Is there some way I can get a handle on the object containing the test result from within tearDown for that test? Or alternately, is there another way or a js-test-driver plugin to accomplish this sort of thing?

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.