Skip to content
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

Add support for enforcing angular.mock.module #567

Open
wants to merge 1 commit into
base: development
Choose a base branch
from

Conversation

tomratcliffe
Copy link

This is needed when migrating angular.js to use webpack, and the existing unit tests call module('myModule'). This causes problems as module is a reserved/special word for webpack use, and the unit tests won't compile (complaining that module is not a function). The solution is to use angular.mock.module('myModule'). This rule change adds a webpack-support option (open to renaming this), and adds a fixer that can sort out the problems found (to save on Ctrl+F'ing through the code and finding issues).

Please see the following for more context/examples:
https://stackoverflow.com/questions/32499108/karma-jasmine-webpack-module-is-not-a-function
https://stackoverflow.com/questions/39360164/module-is-not-a-function-karma-jasmine-webpack-angular?rq=1

This is needed when migrating angular.js to use webpack, and the existing unit tests call `module('myModule')`. This causes problems as `module` is a reserved/special word for webpack use, and the unit tests won't compile. The solution is to use `angular.mock.module('myModule')`. This rule change adds a `webpack-support` option (open to renaming this), and adds a fixer that can sort out the problems found (to save on Ctrl+F'ing through the code and finding issues).
@tomratcliffe
Copy link
Author

Hi @EmmanuelDemey, have you had a chance to look at this yet? Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant