mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-16 23:30:23 +00:00
Fix failing test in IE 10
This commit is contained in:
parent
9428338e97
commit
79049b9fee
1 changed files with 2 additions and 2 deletions
|
|
@ -228,8 +228,8 @@ describe('form', function() {
|
|||
// the issue in the wild, I'm not going to bother to do it
|
||||
// now. (i)
|
||||
|
||||
// IE9 is special and it doesn't fire submit event when form was destroyed
|
||||
if (msie != 9) {
|
||||
// IE9 and IE10 are special and don't fire submit event when form was destroyed
|
||||
if (msie < 9) {
|
||||
expect(reloadPrevented).toBe(true);
|
||||
$timeout.flush();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue