-
Notifications
You must be signed in to change notification settings - Fork 27.4k
fix($injector): Allows ES6 function syntax #12425
Changes from all commits
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 |
---|---|---|
|
@@ -237,6 +237,15 @@ describe('injector', function() { | |
}); | ||
|
||
|
||
// Only Chrome and Firefox support this syntax. | ||
if (/chrome|firefox/i.test(navigator.userAgent)) { | ||
it('should be possible to annotate functions that are declared using ES6 syntax', function() { | ||
// The function is generated using `eval` as just having the ES6 syntax can break some browsers. | ||
expect(annotate(eval('({ fn(x) { return; } })').fn)).toEqual(['x']); | ||
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. Can you explain this better? How does it break? 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. If I change the test to just expect(annotate(({ fn(x) { return; } }).fn)).toEqual(['x']); then the JS parser complains about the syntax. It claims there is a missing 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. Which JS parser? What browser versions are you talking about? Are you talking about the test file failing to parse in older browsers? Or what? 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. Without the
After throwing this error, no tests are executed. 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. Alright, I'd rather we jUst put the test in a different source file which is only loaded in known supported browsers, because I really don't want to rely on eval. Take your pick and document clearly the approach you've taken. Otherwise LGTM |
||
}); | ||
} | ||
|
||
|
||
it('should publish annotate API', function() { | ||
expect(angular.mock.$$annotate).toBe(annotate); | ||
spyOn(angular.mock, '$$annotate').andCallThrough(); | ||
|
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.
This regex will also match MS Edge's navigator (but it's OK, since it understands the syntax as well).
(But the comment is misleading :P)
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.
I do not have access to MS Edge and it is currently not supported by saurcelabs, so this will have to make it.
On a side note, I find it somehow strange for MS Edge user agent to have the word "Chrome" in it
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.
I know.
BTW, it also has
Safari
and (of course)Edge
(for interoperability reasons - or so I've read :P).