-
Notifications
You must be signed in to change notification settings - Fork 29
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
Reduce raw code statements #253
Reduce raw code statements #253
Conversation
…w-code-statements
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.
Agree with everything here, in principal; but want to get the other 2 prs in, an this one merged and 💯 ready, and play with it locally. Will pm you on slack tomorrow, to follow up, @chrisdp
@@ -79,29 +77,53 @@ export class MockUtil { | |||
return; | |||
} | |||
|
|||
let isDisabledFoMocking = functionStatement.annotations?.find(x => x.name.toLowerCase() === 'disablemocking'); |
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.
is this a part of another pr? I'm happy with it; but it seems beyond the scope of this prs description.
…w-code-statements
@georgejecook all the PRs I have open are branches of each other so you should be able to just test on #254 as it was the last one that was branched. |
ed3d6b6
into
rokucommunity:reduce-raw-code-statements
Requires #250
Removes some usages of raw code statements fixing tons of oddities in tests related to indentation issues. Also cleans up a lot of the tests so that they are now all testing the saw way rather then some stripping all indentations and others not doing this.