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
The following code will error, even with mocha/no-mocha-arrows turned off:
describe('my suite',()=>{it('should pass within 2 seconds',()=>{// mocha/no-setup-in-describe: Unexpected member expression in describe block. Member expressions may call functions via getters.// ...}).timeout(2000);});
Maybe the solution would be to add an option to allow this use case?
The text was updated successfully, but these errors were encountered:
The following code will error, even with
mocha/no-mocha-arrows
turned off:Maybe the solution would be to add an option to allow this use case?
The text was updated successfully, but these errors were encountered: