You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! What are your thoughts about having a (stylistic) rule which would enforce chaining assertions?
// disallowing duplication like this:assert.dom("[data-test-my-thing]").exists();assert.dom("[data-test-my-thing]").hasClass();assert.dom("[data-test-my-thing]").hasAttribute();// in favour of:assert.dom("[data-test-my-thing]").exists().hasClass().hasAttribute();
The text was updated successfully, but these errors were encountered:
Hello! What are your thoughts about having a (stylistic) rule which would enforce chaining assertions?
The text was updated successfully, but these errors were encountered: