-
Notifications
You must be signed in to change notification settings - Fork 214
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Load Exception #682
Load Exception #682
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,11 @@ var sendLoadException = function(message) { | |
}, window.location.origin); | ||
} | ||
|
||
// Listen for loadException events and forward to the server. | ||
window.addEventListener('loadException', function(e) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: consider something a bit more specific like There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Changed to dartLoadException given that this logic can reside outside of tests. |
||
sendLoadException(e.detail); | ||
}); | ||
|
||
// The basename of the current page. | ||
var name = window.location.href.replace(/.*\//, '').replace(/#.*/, ''); | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: test | ||
version: 0.12.24+4 | ||
version: 0.12.24+5 | ||
author: Dart Team <[email protected]> | ||
description: A library for writing dart unit tests. | ||
homepage: https://github.com/dart-lang/test | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we're exposing a new feature, this should bump the minor version to 0.12.25. It should also describe how tests can forward load exceptions both here and in either the README or the API docs.
If it's not a user-visible feature, the CHANGELOG should just say "no user-visible changes".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Noted. This is a non user-visible feature.