-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ajax): AjaxTimeoutErrorImpl extends AjaxError (#5226)
* fix ajax: AjaxTimeoutError should extend AjaxError Fixed AjaxTimeoutError not inheriting AjaxError's and Eerror's prototype. While the TypeScript typings were correct, actual code using instanceof operator would fail. The following statements are now true: * AjaxError instanceof Error === true * AjaxTimeoutError instanceof Error === true * AjaxTimeoutError instanceof AjaxError === true * docs: CONTRIBUTING.ms was referencing Jasmine instead of Chai.
- Loading branch information
1 parent
4e78acd
commit a8da8dc
Showing
3 changed files
with
31 additions
and
6 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