qunit-mocha-ui
Version:
A QUnit Interface for Mocha that supports all QUnit's assertion types.
11 lines (10 loc) • 362 B
JavaScript
suite("Negative tests for expect");
test("run four negative expect() tests in a child process, should be 4 failures", function (){
expect(1);
this.timeout(750);
runTestFile("./test/qunit-expect-negative-test.js", function(numFailures) {
equal(4, numFailures, "There should be 4 failed tests in the child testrunner.");
start();
});
stop();
});