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

loading tested module only once in setup #2

Open
michal-lipski opened this issue Apr 10, 2017 · 0 comments
Open

loading tested module only once in setup #2

michal-lipski opened this issue Apr 10, 2017 · 0 comments

Comments

@michal-lipski
Copy link
Contributor

When I have some not idempotent operations in module config I don't want to run it every time I run test:

angular.module('numerals', []) .config(() => { numeral.register('locale', 'pl',{...} // cannot register multiple times })
This config code is executed each time when I run test for this module:
app.runHtml('....')

It would be nice to do it only when we create testing app:
app = test.app([numbers]);

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

No branches or pull requests

1 participant