-
Notifications
You must be signed in to change notification settings - Fork 57
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 Test Coverage for --bundle and --consolify args #141
Conversation
jonnyreeves
commented
Jul 14, 2016
•
edited
Loading
edited
- Fail with a useful error if the user tries to use --bundle wihout --consolify
- Add test-coverage to check that both the consolify'd HTML and extracted bundle are written to disk
Hey, thanks! One thing: The |
Ah sorry, I forgot to test that flow! Let me patch that up. On Thu, 14 Jul 2016, 21:52 Maximilian Antoni, [email protected]
|
* Fail with a useful error if the user tries to use --bundle wihout --consolify * Add test-coverage to check that both the consolify'd HTML and extracted bundle are written to disk
Hey @mantoni; so in adding test coverage I realised that this was the wrong place to make this fix - I'll raise a PR against consolify to ensure the bundle is still written to the correct location, just the script src value is changed to be relative. Cheers |
@@ -43,7 +43,6 @@ rules: | |||
no-return-assign: 2 | |||
no-self-compare: 2 | |||
no-spaced-func: 2 | |||
no-sync: 2 |
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 could change this so it only affects tests if you would prefer?
Awesome! Thanks a lot 👍 |