-
Notifications
You must be signed in to change notification settings - Fork 69
fix(cli): stack filter positional arg is not being respected #846
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
Conversation
| @@ -0,0 +1,26 @@ | |||
| const cdk = require('aws-cdk-lib'); | |||
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.
Creating a new app, to avoid cluttering the existing one, used for other refactoring scenarios.
| desc: 'Whether to do the refactor without asking for confirmation', | ||
| }, | ||
| }, | ||
| arg: { |
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 is the actual fix. The rest follows from it.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #846 +/- ##
==========================================
+ Coverage 82.69% 83.79% +1.09%
==========================================
Files 65 65
Lines 9554 9558 +4
Branches 1122 1140 +18
==========================================
+ Hits 7901 8009 +108
+ Misses 1630 1525 -105
- Partials 23 24 +1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
At some point, the positional argument was lost, and there were no tests for it. Add it to `cli-config.ts`. --- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license
At some point, the positional argument was lost, and there were no tests for it.
Add it to
cli-config.ts.By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license