Georg Ledermann

Joined

21,530 Experience
215 Lessons Completed
0 Questions Solved

Activity

Posted in Testing HTTP Requests with Webmock Discussion

Great episode! Instead of testing private methods directly, I suggest to define a FakeApiClient class that extends ApplicationClient with some dummy methods. This allows testing public methods. Plus, it allows you to remove the BASE_URI constant from ApplicationClient and define it in FakeApiClient.

Posted in Dynamic Nested Forms with Stimulus JS Discussion

Great, I like your screencasts about Stimulus a lot!

Sidekiq has an automatic job retry with exponential backoff:
https://github.com/mperham/sidekiq/wiki/Error-Handling#automatic-job-retry

Why didn't you use that?