-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
Repro: Run a test that throws an uncaught exception, for example:
var QUnit = QUnitGS2.QUnit;
function doGet() {
QUnitGS2.init();
// Just to demonstrate that QUnitGS2 plumbing is hooked up correctly.
QUnit.test("simple numbers", function( assert ) {
assert.equal(1 + 1, 2, "addition");
});
QUnit.test("exception", function( assert ) {
Logger.log("before exception");
throw "uh oh";
Logger.log("after exception");
});
QUnit.start();
return QUnitGS2.getHtml();
}
function getResultsFromServer() {
return QUnitGS2.getResultsFromServer();
}
I'm using the V8 runtime; not sure if that matters.
Expected: something shows up in the results page, or at least in the log that indicates an exception was thrown.
Actual: no indication in the UI that the test was even defined:
Metadata
Metadata
Assignees
Labels
No labels