In some cases, I’ll use AI  to call out any discrepencies which is especially true for more complicated screens with lot of text. Another alternativ

Every Tip I Know For Shipping Products That Match The Spec

submited by
Style Pass
2024-12-28 16:00:10

In some cases, I’ll use AI to call out any discrepencies which is especially true for more complicated screens with lot of text.

Another alternative if you want to catch small differences is Kaleidoscope. A free alternative (for text only) is diffchecker.com

I use a personal .gitignore and store a bunch of “ snippets” that I’ve caught myself running in the console over and over again. Let’s say you’re debugging a function that has strange behavior - you don’t want to write tests, because you already have a repro on the console, but changing the method seems to break other cases.

Now I can modify foo over and over again and each time I hit save it’ll tell me if I fixed it. This is much faster than having to write a test case, scaffolding all the data, etc.

You can also put requests in here, via curl and mimic what is happening on the network. Repeat the UX , copy the cURL as below and put it in your scratch.rb file.

Leave a Comment