-
Notifications
You must be signed in to change notification settings - Fork 0
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
21 - Test lib code-actions #39
21 - Test lib code-actions #39
Conversation
08c8953
to
047b420
Compare
614ced1
to
aab4ca3
Compare
2ac0cf2
to
35e6207
Compare
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.
See comments
@@ -2,6 +2,7 @@ mod code_actions_provider; | |||
mod completions; | |||
mod error; | |||
mod references; | |||
mod test_utils; |
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 module could be declared only on test runs (check rust macros for that) in order to remove all the "#[allow(dead_code)] everywhere
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.
allow dead code could be removed if you declare this file only on test runs
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.
Should be removed
c050de4
into
chore/18-unit-testing-staging
Solves #21