-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include output from
QUnit.on('error')
The two are not likely to overlap, but this could in theory report the same error twice. In practice, given the bridge kicks in fairly late, uncaught errors will happen before our QUnit listener is active, and late errors are likely exclusive to `QUnit.on('error')`. The "No tests" message is changing in QUnit 3.0 from a "fake" test, to an error event, hence this is in preparation for that.
- Loading branch information
Showing
4 changed files
with
52 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Test Suite</title> | ||
<link rel="stylesheet" href="../node_modules/qunit/qunit/qunit.css" media="screen"> | ||
<script src="../node_modules/qunit/qunit/qunit.js"></script> | ||
</head> | ||
<body> | ||
<div id="qunit"></div> | ||
<!-- No tests --> | ||
</body> | ||
</html> |