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
Caught this one earlier today. no-hooks-from-ancestor-modules rule does not appear to throw an error when arrow functions are used in the module.
module('big test',function(hooks){module('group 1',()=>{// this is not a linting errorhooks.beforeEach(()=>{ ... });});module('group 2',function(){// this is a linting errorhooks.beforeEach(()=>{ ... });});});
The text was updated successfully, but these errors were encountered:
Caught this one earlier today.
no-hooks-from-ancestor-modules
rule does not appear to throw an error when arrow functions are used in the module.The text was updated successfully, but these errors were encountered: