Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 611631a

Browse files
committed
ci(karma): run tests on latest Chrome (59) and Firefox (54) available on Saucelabs
1 parent 9f0dc04 commit 611631a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

karma-shared.conf.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ module.exports = function(config, specificOptions) {
4545
'SL_Chrome': {
4646
base: 'SauceLabs',
4747
browserName: 'chrome',
48-
version: '51'
48+
version: '59'
4949
},
5050
'SL_Firefox': {
5151
base: 'SauceLabs',
5252
browserName: 'firefox',
53-
version: '47'
53+
version: '54'
5454
},
5555
'SL_Safari_8': {
5656
base: 'SauceLabs',

test/ng/directive/formSpec.js

+1
Original file line numberDiff line numberDiff line change
@@ -477,6 +477,7 @@ describe('form', function() {
477477
// the DOM. Verify that the `submit` listener was either never fired or (if fired) the
478478
// reload was prevented.
479479
expect(reloadPrevented).not.toBe(false);
480+
expect(reloadPrevented).toBe('never called');
480481

481482
// prevent mem leak in test
482483
form[0].removeEventListener('submit', assertPreventDefaultListener);

0 commit comments

Comments
 (0)