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
when using a describe.each or test.each it would be nice to have a rule to ensure that the pretty formatting or $variable injection is used to ensure the results are unique.
for example, rule would report on test.each([1,2,3])("Should square the number", () => {...})
when using a
describe.each
ortest.each
it would be nice to have a rule to ensure that the pretty formatting or$variable
injection is used to ensure the results are unique.for example, rule would report on
test.each([1,2,3])("Should square the number", () => {...})
but not report on
test.each([1,2,3])("Should square %i", () => {...})
The text was updated successfully, but these errors were encountered: