Our feature tests have very non-descriptive names in the describe. They're named after the object from the route. So it'll be something like describe("Profile") do and the features test will contain feature tests that start on the Profile#Edit page. This is unclear and hard to parse. Let's improve our feature test titles! Please comment with your recommendations below.
Hey ChaelCodes, I hope everything is going well for you. If you need help with anything, I'd be delighted to help. This is my first time contributing to an open-source project.
Description
Our feature tests have very non-descriptive names in the
describe
. They're named after the object from the route. So it'll be something likedescribe("Profile") do
and the features test will contain feature tests that start on theProfile#Edit
page. This is unclear and hard to parse. Let's improve our feature test titles! Please comment with your recommendations below.