-
Notifications
You must be signed in to change notification settings - Fork 2
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
[PR] Fixing timer string not updating after editing timer object #246
Conversation
Codecov Report
@@ Coverage Diff @@
## main #246 +/- ##
===========================================
+ Coverage 90.65% 100.00% +9.34%
===========================================
Files 15 14 -1
Lines 428 390 -38
===========================================
+ Hits 388 390 +2
+ Misses 40 0 -40
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
This line that is not covered is frustrating. It clearly is covered by If I change the line in s = if diff > 1000 do
s = (diff / 1000) |> trunc()
s = if s > 60, do: Integer.mod(s, 60), else: s
left_pad(s)
the coverage is 100%. But since the Github Action mandates the lines to be formatted, this line keeps popping off as "not covered" (and inconsistently, which is even more frustrating). :( |
@nelsonic have you ever had this happen to you? |
Not had that issue before. Does it pass on your |
Yes, it does. |
@SimonLab can you take a quick look at this? 🙏 |
@nelsonic this PR should now be mergeable. |
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.
Thanks @LuchoTurtle 👍
Sadly the review app: https://mvp-pr-246.fly.dev/ is erroring:
But the code looks good and tests pass. 👌
fix #244
Item timer should now update accordingly.