-
Notifications
You must be signed in to change notification settings - Fork 286
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
test(test-plugin-ledger-connector-besu): jestify get-block-endpoint #3607
base: main
Are you sure you want to change the base?
test(test-plugin-ledger-connector-besu): jestify get-block-endpoint #3607
Conversation
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.
@krriscode Looking good, thank you!
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.
@krriscode Please fix the commit lint check by modifying the git commit message. It looks like you need a line break somewhere to make the lines less than 100 characters each.
If you need any help with the git mechanics involved just let me know and I can help.
0f99b2e
to
8bb1296
Compare
Hi @petermetz, |
8bb1296
to
822ae13
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.
@krriscode Getting closer! Now the commit message is looking good but you are not doing the signoff with the correct name and/or email address. Please see the details here:
822ae13
to
0802711
Compare
0802711
to
ec26f37
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.
@krriscode Same issue still. There's a more detailed explanation of how it works that might help if you read all of that: https://stackoverflow.com/a/62972983/698470
ec26f37
to
e25abca
Compare
e25abca
to
9f62e82
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.
@krriscode The sign off is still not working. You are trying to submit your pull request being signed off as someone else:
Error: The SoB (DCO) check failed
9f62e82005578755f233384042f0b0068e5fea6a Expected "Udhayakumari <[email protected]>", but got "krriscode <[email protected]>".
What should I do to fix it ?
All proposed commits should include a Signed-off-by: <your-name> <your-email-address> line in their commit message.
This is most conveniently done by using --signoff (-s) when running git commit.
Hi @petermetz, |
a21065b
to
641c8e9
Compare
@krriscode That's strange, let me take a look at it myself then. FYI: I'll probably end up rebasing your branch manually, so if you see divergence between your local branch and the remote branch that's no cause for alarm. |
Migration of get-block-endpoint.ts from tape-promise to Jest. Update tests for improved reliability and performance. Signed-off-by: krriscode <[email protected]>
641c8e9
to
64b6c4e
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.
@krriscode LGTM, thank you!
@krriscode Upon further investigation it looks like you did manage to fix it after all, so we are good to go now we just need other maintainers to review it and then it can be merged. Thank you again for the contribution! |
test(test-plugin-ledger-connector-besu): jestify get-block-endpoint
Primary Changes:
Fixes: #3500
Signed-off-by: krriscode [email protected]
Migration of get-block-endpoint.ts from tape-promise to Jest. Update tests for improved reliability and performance.
Pull Request Requirements
upstream/main
branch and squashed into single commit to help maintainers review it more efficient and to avoid spaghetti git commit graphs that obfuscate which commit did exactly what change, when and, why.-s
flag when usinggit commit
command. You may refer to this link for more information.Character Limit
A Must Read for Beginners
For rebasing and squashing, here's a must read guide for beginners.