-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: ignore jsVersion configuration property in Firefox 59+
Support for specifying JavaScript version was removed in Firefox 59. See https://bugzilla.mozilla.org/show_bug.cgi?id=1428745 for more details. From now on Karma will ignore `jsVersion` property in Firefox 59+ and print deprecation warning if `jsVersion` property is found. Closes #2957
- Loading branch information
1 parent
f18f728
commit 2694d54
Showing
5 changed files
with
15 additions
and
7 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* globals containsJsTag, isFirefox */ | ||
/* globals containsJsTag, isFirefoxBefore59 */ | ||
describe('JavaScript version tag', function () { | ||
it('should add the version tag, if Firefox is used', function () { | ||
expect(containsJsTag()).toBe(isFirefox()) | ||
expect(containsJsTag()).toBe(isFirefoxBefore59()) | ||
}) | ||
}) |
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