-
-
Notifications
You must be signed in to change notification settings - Fork 389
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor(tests/spec/SpecHelper): avoid call() #1985
Conversation
This should also fix the problem in #1981 where ReSpec is incorrectly loaded twice. Inserting ReSpec twice has not been a problem with requirejs as 1) previously ReSpec has been a set of AMD modules 2) defining an AMD module twice does not overwrite the previous one. With webpack ReSpec is not a set of modules anymore, so it becomes a problem. |
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.
Happy new year! 🎉
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.
Looks good.
Happy 2019! |
as
call()
makes code hard to read 🤔